当我使用 add-apt-repository 时,ModuleNotFoundError:没有名为“xml.sax”的模块

当我使用 add-apt-repository 时,ModuleNotFoundError:没有名为“xml.sax”的模块

当我在终端运行此命令时

sudo add-apt-repository ppa:leaeasy/dde

出现此问题:

Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 11, in <module>
    from softwareproperties.SoftwareProperties import SoftwareProperties, shortcut_handler
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 49, in <module>
    from xml.sax.saxutils import escape
ModuleNotFoundError: No module named 'xml.sax'

我应该怎么办?

我的 Ubuntu 版本是 17.10

答案1

看起来 Python 标准库包已损坏。您可以使用以下命令恢复它:

sudo apt-get install -f --reinstall libpython3.6-stdlib

系统上的其他软件包也可能受到影响。您可以在完整性检查并按照与上述相同的方式重新安装它们。

相关内容