[pip] Pip 설치 시 ix 기반 라이브러리 실패 해결 방법

694 단어
일부 라이브러리를 설치할 때 다음과 같이 오류가 발생합니다.
Installing collected packages: six
Found existing installation: six 1.4.1
DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
Uninstalling six-1.4.1:
...

외망대신의 설명을 참고하여 설치된 명령을
sudo pip install six --upgrade --ignore-installed six

해결 (libName 라이브러리 이름) Mac에서python3을 설치한 경우 pip3을 사용할 수 있습니다.
애플이 미리 설치한 이 식스 라이브러리는 안전상의 이유로 sudo로 설정되어 있어 작업을 수행할 수 없기 때문에 높은 버전의 라이브러리에 의존해야 하기 때문에 식스를 업데이트해야 하지만 식스 권한이 없기 때문에 오류가 발생합니다.

좋은 웹페이지 즐겨찾기