pip a cessé de fonctionner sur mon serveur ubuntu et donne l'erreur ci-dessous lorsque j'essaie de télécharger quoi que ce soit.
$ Sudo pip install SQLAlchemy
Downloading/unpacking SQLAlchemy
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement SQLAlchemy
No distributions at all found for SQLAlchemy
Storing complete log in /home/user/.pip/pip.log
Tous les éléments ci-dessous ne fonctionnent pas non plus
$ Sudo pip install --upgrade pip
$ Sudo apt-get install build-essential
Ma /etc/environment
a les paramètres ci-dessous qui fonctionnaient précédemment.
http_proxy="http://myproxyhere:portnumberhere/"
HTTP_PROXY="http://myproxyhere:portnumberhere/"
Ma /home/user/.pip
------------------------------------------------------------
/usr/bin/pip run on Sat Jun 7 20:08:38 2014
Downloading/unpacking SQLAlchemy
Getting page http://pypi.python.org/simple/SQLAlchemy
Could not fetch URL http://pypi.python.org/simple/SQLAlchemy: <urlopen error [Errno 111] Connection refused>
Will skip URL http://pypi.python.org/simple/SQLAlchemy when looking for download links for SQLAlchemy
Getting page http://pypi.python.org/simple/
Could not fetch URL http://pypi.python.org/simple/: <urlopen error [Errno 111] Connection refused>
Will skip URL http://pypi.python.org/simple/ when looking for download links for SQLAlchemy
Cannot fetch index base URL http://pypi.python.org/simple/
URLs to search for versions for SQLAlchemy:
* http://pypi.python.org/simple/SQLAlchemy/
Getting page http://pypi.python.org/simple/SQLAlchemy/
Could not fetch URL http://pypi.python.org/simple/SQLAlchemy/: <urlopen error [Errno 111] Connection refused>
Will skip URL http://pypi.python.org/simple/SQLAlchemy/ when looking for download links for SQLAlchemy
Could not find any downloads that satisfy the requirement SQLAlchemy
No distributions at all found for SQLAlchemy
Exception information:
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 126, in main
self.run(options, args)
File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 223, in run
requirement_set.prepare_files(Finder, force_root_Egg_info=self.bundle, bundle=self.bundle)
File "/usr/lib/python2.7/dist-packages/pip/req.py", line 948, in prepare_files
url = Finder.find_requirement(req_to_install, upgrade=self.upgrade)
File "/usr/lib/python2.7/dist-packages/pip/index.py", line 152, in find_requirement
raise DistributionNotFound('No distributions at all found for %s' % req)
DistributionNotFound: No distributions at all found for SQLAlchemy
Quelqu'un at-il une idée de ce qui pourrait mal se passer?
Vous devez récupérer pypi sur HTTPS, pas HTTP.
Pour une raison quelconque, votre pip est configuré pour récupérer à partir de http://pypi.python.org/simple/ plutôt que https://pypi.python.org/simple/
Réponse: mise à niveau pip.
J'avais installé la version 1.1. Avec Sudo pip install --upgrade pip
J'ai obtenu la version 8.1.2 et le package que je voulais installer correctement.
Vous n'utilisez pas de connexions https, utilisées depuis fin 2013.
Vous pouvez utiliser les options --index pour corriger l'URL d'index. Voir http://pip.readthedocs.org/en/latest/reference/pip_wheel.html#index-url
pip
Sudo pip install --upgrade pip -i https://pypi.python.org/simple
alors, vous pouvez utiliser pip
comme:
Sudo pip install SQLAlchemy
-i
Sudo pip install SQLAlchemy -i https://pypi.python.org/simple
Vous pouvez transmettre une URL d'index spécifique avec -i
:
Sudo pip install SQLAlchemy -i https://pypi.python.org/simple
Bien que ce soit une vieille question, ma solution peut aider quelqu'un.
pip install SQLAlchemy --extra-index-url=https://pypi.python.org/simple/
Cela fonctionne pour moi.
Pourquoi n'essayez-vous pas d'installer pip dans un super utilisateur? Tapez su et votre mot de passe, puis essayez Sudo pip install SQLAlchemy