Python 具有未满足的依赖项

Python 具有未满足的依赖项

我使用此命令下载软件中心

sudo apt-get install software-center

弹出此错误

python-lxml but it is not going to be installed

尝试过

  sudo apt-get purge python
  sudo apt-get install python2.7

现在我遇到了更多错误

software-center :Depends: gvfs-backends
                 Depends: python-lxml but it is not going to be installed
                 Recommends: update-notifier but it is not going to be installed

答案1

此处的错误不是问题,python而是python-lxml未安装。请尝试以下操作:

sudo apt-get 安装 python-lxml
sudo apt-get 安装软件中心

这应该可以解决你的问题。

相关内容