【发布时间】:2017-04-21 10:27:15
【问题描述】:
我正在尝试运行:
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'
【问题讨论】:
-
可能是权限问题。试试
sudo pip install boto3 -
此问题描述为here。试试看:
pip install --ignore-installed six -
在python中,总是设置一个虚拟开发环境,例如virtualenv 或 conda :python-guide-pt-br.readthedocs.io/en/latest/dev/virtualenvs
标签: python python-2.7 boto boto3