我刚刚从 Ubuntu GNOME 16.04 升级到 16.10,然后我无法运行software-properties-gtk
。
该命令的输出是:
Traceback (most recent call last):
File "/usr/bin/software-properties-gtk", line 37, in <module>
from softwareproperties.gtk.SoftwarePropertiesGtk import SoftwarePropertiesGtk
File "/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py", line 34, in <module>
from aptdaemon import client
File "/usr/lib/python3/dist-packages/aptdaemon/client.py", line 43, in <module>
import defer
ImportError: No module named 'defer'
这意味着所有其他依赖的程序aptd
都在抛出错误。
我尝试重新安装python-defer
没有任何错误的软件包,但这并没有解决这个问题。
任何建议出了什么问题?谢谢!
检查您是否为不同的 python 版本安装了 defer。如果我没记错的话,你可以使用
pip2 install defer
或pip3 install defer