ModuleNotFoundError:没有名为“softwareproperties.SoftwareProperties”的模块

ModuleNotFoundError:没有名为“softwareproperties.SoftwareProperties”的模块

我已经在 Ubuntu 上删除并安装了 python3 20.04,现在出现此错误:

Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 12, in <module>
    from softwareproperties.SoftwareProperties import SoftwareProperties, shortcut_handler
ModuleNotFoundError: No module named 'softwareproperties.SoftwareProperties'
  • 我尝试通过安装来解决这个问题software-properties-common,但是没有用! sudo apt-get install --reinstall software-properties-common

  • 版本Python3我现在有的是:Python 3.8.10

你能告诉我如何解决这个问题吗?提前谢谢了。

答案1

python3-software-properties解决方案是按如下方式安装该包:

sudo apt install --reinstall python3-software-properties

相关内容