Filipe Ferminiano
Filipe Ferminiano

Reputation: 8809

Error on pip install boto3

I'm trying to run:

pip install boto3

But I'm getting this error:

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'

Upvotes: 3

Views: 3497

Answers (1)

eli-bd
eli-bd

Reputation: 1634

Try

pip install --ignore-installed boto3

Upvotes: 10

Related Questions