Per installare PIP lo strumento di packaging Python su RHEL 7 Linux dobbiamo prima installare il suo unico prerequisito e cioè setuptools
pacchetto altrimenti otterremo il seguente messaggio di errore:
Downloading/unpacking pip Cannot fetch index base URL https://pypi.python.org/simple/ Could not find any downloads that satisfy the requirement pip Cleaning up... No distributions at all found for pip Storing debug log for failure in /root/.pip/pip.log
Per questo motivo installiamo prima setuptools
:
[root@rhel7 ~]# wget https://pypi.python.org/packages/source/s/setuptools/setuptools-7.0.tar.gz --no-check-certificate [root@rhel7 ~]# tar xzf setuptools-7.0.tar.gz [root@rhel7 ~]# cd setuptools-7.0 [root@rhel7 ~]# python setup.py install ... Installed /usr/lib/python2.7/site-packages/setuptools-7.0-py2.7.egg Processing dependencies for setuptools==7.0 Finished processing dependencies for setuptools==7.0
Una volta setuptools
pacchetto è installato, ora possiamo procedere con l'installazione PIP effettiva. Qui assumiamo che python
è già installato sul tuo sistema Linux Redhat 7.
[root@rhel7 ~]# wget https://bootstrap.pypa.io/get-pip.py [root@rhel7 ~]# python get-pip.py Downloading/unpacking pip Downloading pip-1.5.6-py2.py3-none-any.whl (1.0MB): 1.0MB downloaded Installing collected packages: pip Successfully installed pip Cleaning up...
Tutto fatto. Confermiamo le nostre azioni controllando la versione PIP:
[root@rhel7 ~]# pip --version pip 1.5.6 from /usr/lib/python2.7/site-packages (python 2.7)
{loadposition python-tutorial-toc}