我是Linux新用户。我正在尝试使用此命令在ubuntu 18.04中安装sublime文本编辑器。
sudo add-apt-repository ppa:webupd8team/sublime-text-3
但我收到这样的错误:
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 28, in <module>
import apt_pkg
ModuleNotFoundError: No module named 'apt_pkg'
我在其他问题(例如在stackoverflow中的我的问题)得到了解决方案。解决方案是通过以下方式重新安装python:
sudo apt-get install --reinstall python-apt python3-apt
我多次重新安装python,但对我不起作用。我一次又一次地收到此错误。你能帮我吗?