我正在使用 Debian GNU/Linux 9.13(延伸)。我在进行任何依赖于 python 的安装时遇到一个反复出现的问题。一个例子是当我使用:
dpkg --configure -a
我有错误(最后):
dpkg: error processing package python-imaging (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
python-urllib3
lutris
python-pypdf2
python-lxml
python-libxml2
python-opencv
python-pil:amd64
python-xdg
python-imaging
我已经尝试过使用类似的命令
apt-get update && sudo apt-get upgrade
apt-get dist-upgrade
我能做些什么?
编辑:我尝试过command -v python
并得到了
/usr/bin/python
并python --version
返回
Python 3.5.3
答案1
您需要重新安装Python,特别是包裹python-minimal
:
sudo rm /usr/bin/python
sudo apt-get install --reinstall python-minimal