Flower in my dev/Python
<PYTHON>[pip 설치 02]
꽃선생
2016. 1. 13. 09:52
For RHEL 7.x and CentOS 7.x (x86_64)
We have already written post on “Install EPEL repo on CentOS 7 / RHEL 7” with more details. Below given command will install EPEL repo on CentOS 7 / RHEL 7.
yum install epel-release
For RHEL 6.x and CentOS 6.x (x86_64)
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
For RHEL 6.x and CentOS 6.x (i386)
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
For RHEL 5.x and CentOS 5.x (x86_64)
rpm -ivh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
For RHEL 5.x and CentOS 5.x (i386)
rpm -ivh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
Installing pip with yum command
Now install pip with yum command
yum install -y python-pip
위의 내용은 http://sharadchhetri.com/2014/05/30/install-pip-centos-rhel-ubuntu-debian/ 에서 퍼옴
성공적으로 설치가 된다.
[결과]