Debian 9를 실행 중이고 Python pip를 설치하고 싶지만 오류가 발생합니다.
E: Unable to locate package python-pip
sudo를 시도했지만 apt-get update && sudo apt-get python-pip
여전히 오류가 발생합니다.
답변1
소프트웨어를 설치하는 명령은 apt
다음과 같습니다.
sudo apt-get install python-pip
install
명령을 놓쳤습니다 apt-get
.
답변2
편집 sources.list
(루트로):
nano /etc/apt/sources.list
다음 줄을 포함합니다:
deb http://deb.debian.org/debian stretch main
deb-src http://deb.debian.org/debian stretch main
deb http://deb.debian.org/debian-security/ stretch/updates main
deb-src http://deb.debian.org/debian-security/ stretch/updates main
deb http://deb.debian.org/debian stretch-updates main
deb-src http://deb.debian.org/debian stretch-updates main
Ctrl + O, Enter, Ctrl + X저장한 후 다음을 실행합니다.
apt update
apt install python-pip