Debian Dpkg: Python 패키지를 처리하는 중 오류가 발생했습니다.

Debian Dpkg: Python 패키지를 처리하는 중 오류가 발생했습니다.

저는 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

관련 정보