Ajoutez l'option --user
à pip
% pip install tweepy --user
Erreur lors de la tentative d'installation avec PyCharm
Essayez de courir avec sudo
% sudo pip install tweepy Password:
You are using pip version 7.1.0, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
The directory '/Users/Artemis/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
You are using pip version 7.1.0, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
The directory '/Users/Artemis/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
.
.
.
OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/pygments'
Soyez prudent avec la version de pip-> Ignorez-la car c'était ennuyeux de mettre à jour la dernière fois Soyez prudent avec la propriété Mettez-vous en colère contre l'autorité
Essayez d'ajouter l'option -H
à sudo
% sudo -H pip install tweepy
.
.
.
OSError: [Errno 1] Operation not permitted: '/tmp/pip-SMqSdl-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'
L'erreur a changé mais elle ne résout pas
/ tmp / pip-SMqSdl-uninstall
a les privilèges root, mais sudo
est attaché ...
Il semble que vous puissiez changer la destination de l'installation en ajoutant l'option --user
à pip
% pip install tweepy --user You are using pip version 7.1.0, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting tweepy
Downloading tweepy-3.5.0-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): requests>=2.4.3 in /Library/Python/2.7/site-packages (from tweepy)
Collecting six>=1.7.3 (from tweepy)
Downloading six-1.10.0-py2.py3-none-any.whl
Collecting requests-oauthlib>=0.4.1 (from tweepy)
Downloading requests_oauthlib-0.7.0-py2.py3-none-any.whl
Collecting oauthlib>=0.6.2 (from requests-oauthlib>=0.4.1->tweepy)
Downloading oauthlib-2.0.1.tar.gz (122kB)
100% |████████████████████████████████| 126kB 938kB/s
Installing collected packages: six, oauthlib, requests-oauthlib, tweepy
Running setup.py install for oauthlib
Successfully installed oauthlib requests-oauthlib six-1.4.1 tweepy
l'a fait!
Veuillez signaler toute erreur.
http://qiita.com/tmsanrinsha/items/d7b69bde61a55038c054 http://qiita.com/ronin_gw/items/cdf8112b61649ca455f5 http://tdoc.info/blog/2014/01/15/pip.html
Recommended Posts