ModuleNotFoundError:没有名为“ apt_pkg”的模块

时间:2020-09-29 07:52:34

标签: python python-3.x ubuntu

我正在使用Ubuntu 16.04。我试图使用终端添加回购。在添加时,出现错误:

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 27, in <module>
    import apt_pkg
ModuleNotFoundError: No module named 'apt_pkg'

我尝试使用各种命令来安装该模块:

pip3 install apt_pkg
sudo apt-get install --reinstall python3-apt
sudo apt-get install python3-apt --reinstall

然后,如果我尝试添加该存储库,则会出现相同的错误。

我拥有的python版本是:

$ python3 --version
Python 3.7.9
$ python --version
Python 2.7.12

这些是我在终端中拥有的版本。在IDLE中,我有3.5

要安装该软件包apt_pkg,我还要做什么?

0 个答案:

没有答案