CentOS 快速安裝pip

baibaluo發表於2015-11-21

python的很多元件都必須依靠pip來安裝,比如elasticsearch驅動、postgres驅動

Python2.7以後的版本自帶pip,centos6.5之前yum自帶的python為2.6,所以需要手工安裝,安裝方法如下:

 

方法一:

安裝epel的yum源

yum install -y python-pip

 

方法二:

wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py
python get-pip.py
 
安裝完成後,就可以用pip install xxx,安裝所需的元件了。

相關文章