pip3을 설치하려고하는데 운이 없습니다. 또한 시도했지만 sudo install
작동하지 않았습니다. Mac에 pip3을 어떻게 설치합니까?
sudo easy_install pip3
Password:
Searching for pip3
Reading https://pypi.python.org/simple/pip3/
Couldn't find index page for 'pip3' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
No local packages or download links found for pip3
error: Could not find suitable distribution for Requirement.parse('pip3')
답변
업데이트-1.5 이후 Homebrew 버전
공식 Homebrew 페이지 에 따르면 :
2018 년 3 월 1 일에 Python 공식이 Python 3.x로 업그레이드되고 Python 2.7 설치를 위해 python @ 2 공식이 추가 될 예정입니다 (하지만 이것은 keg 전용이지만 Python이나 python2는 기본적으로 PATH에 추가되지 않습니다) 수동 추출 링크-힘). python2, python3 및 python @ 3 별칭을 유지합니다.
따라서 Python 3을 설치하려면 다음 명령을 실행하십시오.
brew install python3
그런 다음, pip
또는 pip3
자동으로 설치됩니다, 당신은에 의해 어떤 패키지를 설치할 수 있습니다 pip install <package>
.
Homebrew의 이전 버전
뿐만 brew install python3
아니라brew postinstall python3
따라서 다음을 실행해야합니다.
brew install python3
brew postinstall python3
오류가 발생할 수 있으므로 콘솔 pip3
이 설치되어 있지 않으므로 콘솔을 확인해야합니다 .
답변
답변
이 명령으로 동일한 문제를 해결했습니다.
curl -O https://bootstrap.pypa.io/get-pip.py
sudo python3 get-pip.py
답변
나를 위해 brew postinstall python3
작동하지 않았다. GitHub homebrew 문제 페이지에서이 솔루션을 찾았습니다.
$ brew rm python
$ rm -rf /usr/local/opt/python
$ brew cleanup
$ brew install python3
답변
Python3은 성공적으로 작동했지만 pip3은 없습니다. stackoverflow, quora 및 기타의 많은 조언을 시도했습니다. (많은 설치 및 제거)
Python3은 항상 좋았지 만 pip3은 없었습니다. 마지막으로 https://www.python.org/downloads/ 에서 Python3을 다운로드했습니다.
간단한 마우스 클릭으로 모든 것이 (Python3 + pip3) 정상적으로 작동합니다.
답변
pip를 설치하거나 업그레이드하려면 공식 사이트 에서 get-pip.py 를 다운로드 하십시오 . 그런 다음 다음 명령을 실행하십시오.
sudo python get-pip.py
pip
스크립트를 실행하는 파이썬 버전에 설치 됩니다.
답변
Oksana와 유사하지만 python3 추가
$ brew rm python
$ brew rm python3
$ rm -rf /usr/local/opt/python
$ rm -rf /usr/local/opt/python3
$ brew prune
$ brew install python3
$ brew postinstall python3
Mac OS X 10.13.3 Xcode 9.2에서 pip3에서 작동합니다.