Ce problème a fait disparaître 3 heures.
easy_install ne trouve pas le package requis. La même chose est vraie pour pip.
# easy_install pip
Reading https://pypi.python.org/simple/pip/
Download error on https://pypi.python.org/simple/pip/: [Errno 1] _ssl.c:510: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed -- Some packages may not be found!
Couldn't retrieve index page for 'pip'
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
Download error on https://pypi.python.org/simple/: [Errno 1] _ssl.c:510: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed -- Some packages may not be found!
Best match: pip 6.0.6
Processing pip-6.0.6-py2.7.egg
pip 6.0.6 is already the active version in easy-install.pth
Installing pip script to /home/akisato/src/downloads/python-2.7.8/bin
Installing pip2.7 script to /home/akisato/src/downloads/python-2.7.8/bin
Installing pip2 script to /home/akisato/src/downloads/python-2.7.8/bin
Using /home/akisato/src/downloads/python-2.7.8/lib/python2.7/site-packages/pip-6.0.6-py2.7.egg
# pip install setuptools --upgrade
Could not find any downloads that satisfy the requirement setuptools in ./lib/python2.7/site-packages/setuptools-12.0.1-py2.7.egg
Collecting setuptools
No distributions at all found for setuptools in ./lib/python2.7/site-packages/setuptools-12.0.1-py2.7.egg
Vous pourriez penser que vous devriez faire yum install openssl-devel, mais ce n'est pas possible pour les gens ordinaires sans privilèges root. : p
Tout d'abord, récupérez tar.gz de pip et installez-le.
# wget https://pypi.python.org/packages/source/p/pip/pip-6.0.6.tar.gz --check-no-certificate
# tar xzvf pip-6.0.6.tar.gz
# cd pip-6.0.6.tar.gz
# python setup.py build
# python setup.py install
Si cela est laissé tel quel, pip ne parviendra pas à vérifier SSL en raison de l'ancien OpenSSL, donc modifiez pip. (Référence: docs / TSUBAME http://www.kyogoku.biz/docs/TSUBAME)
# vim ~/src/downloads/python-2.7.6rc1/lib/python2.7/site-packages/pip-6.0.6-py2.7.egg/pip/downloads.py
À côté de la ligne indiquant Envoyer la demande réelle,
return super(PipSession, self).request(method, url, verify=False, *args, **kwargs)
Réécrivez en.(verify=Ajoutez False.)
Cela aurait dû résoudre le problème pour le moment.
# pip install python
Collecting ipython
Downloading ipython-2.3.1-py27-none-any.whl (2.8MB)
100% |################################| 2.8MB 274kB/s
Installing collected packages: ipython
Successfully installed ipython-2.3.1
Recommended Posts