2017-04-21 1 views
2

설치 :오류가 나는 실행하기 위해 노력하고있어 boto3

pip install boto3 

그러나 나는이 오류를 받고 있어요 :

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. 
OSError: [Errno 1] Operation not permitted: '/tmp/pip-ueLGpf-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info' 
+0

권한 문제보십시오. 'sudo pip install boto3' 시도하십시오 – luoluo

+0

이 문제는 [here] (https://github.com/pypa/pip/issues/3165)에 설명되어 있습니다. 시도해보십시오 :'pip install --ignore-installed six' – elethan

+1

파이썬에서는 항상 가상 개발 환경을 설정합니다. virtualenv 또는 conda : http://python-guide-pt-br.readthedocs.io/en/latest/dev/virtualenvs/ – mootmoot

답변

5

어쩌면

pip install --ignore-installed boto3 
+0

감사합니다. –

관련 문제