RHEL 7 LinuxにPythonパッケージツールであるPIPをインストールするには、最初にその唯一の前提条件であるsetuptools
をインストールする必要があります。 パッケージを指定しないと、次のエラーメッセージが表示されます:
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
このため、最初に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
一度setuptools
パッケージがインストールされ、実際のPIPインストールを続行できます。ここでは、python
Redhat7Linuxシステムにすでにインストールされています。
[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...
全部終わった。 PIPバージョンを確認してアクションを確認しましょう:
[root@rhel7 ~]# pip --version pip 1.5.6 from /usr/lib/python2.7/site-packages (python 2.7)
{loadposition python-tutorial-toc}