패키지가 설치되었지만 감지되지 않음(pip3.2)

패키지가 설치되었지만 감지되지 않음(pip3.2)

Python3.3용 BeatutifulSoup4를 설치하기 위해 pip를 설치하려고 합니다. 리눅스 민트 16.

[127]manuel@manuel-X202E:~ > pip3.2 install beautifulsoup4
No command 'pip3.2' found, did you mean:
 Command 'pip-3.2' from package 'python3-pip' (universe)
 pip3.2: command not found
---------------------
[100]manuel@manuel-X202E:~ > sudo apt-get install python3-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-pip is already the newest version.
----------------------
manuel@manuel-X202E:~ > pip-3.2 install beautifulsoup4
The program 'pip-3.2' is currently not installed. You can install it by typing:
sudo apt-get install python3-pip

그래서 패키지가 설치되었지만 감지되지 않습니다. (OS를 다시 시작해 보았습니다.)


나는 또한 다음을 시도했습니다.

 sudo apt-get purge python3-pip 
 sudo apt-get install python3-pip 
 sudo apt-get update
 sudo apt-get check

또한

 sudo apt-get purge python3-pip 
 (reinstall via Synaptic)

편집하다: 드디어 해결했습니다(dpkg 사용). 문제는 내가 사용해야 하는가이다.

 pip3

바꾸다

pip3-2

답변1

귀하의 질문에 따르면 귀하의 질문은 단지 오타인 것 같습니다. 올바른 명령은 다음과 같습니다.pip-3.2, 아니요오직포인트 3.2.

편집하다:글쎄, 오타가 주요 나쁜 사람이 아니라면 다른 것을 시도해 봅시다...

1) 제거python3-pip

sudo apt-get purge python3-pip

2) 모든 것을 청소하세요 :-)

sudo apt-get clean
sudo apt-get autoclean
sudo apt-get remove
sudo apt-get autoremove

3) 설치python3-pip, 패키지 목록을 업데이트하고 종속성을 확인하십시오.

sudo apt-get install python3-pip
sudo apt-get update
sudo apt-get check

4) 그래도 작동하지 않으면 Synaptic을 사용하여 다시 설치해 보십시오.

5) 그래도 운이 없다면 시도해 보세요

dpkg -L python3-pip

다음 위치에 있는 파일을 찾으세요./usr/빈이외의 부팅 가능한 파일이 없는 경우포인트 -3.2

관련 정보