CentOS7.6-pip安裝

业余砖家發表於2024-03-07

安裝方式1

wget http://python-distribute.org/distribute_setup.py

sudo python distribute_setup.py

wget https://github.com/pypa/pip/raw/master/contrib/get-pip.py

sudo python get-pip.py

安裝方式2

wget https://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz --no-check-certificate

tar xvf pip-1.3.1.tar.gz

python pip-1.3.1/setup.py install

使用tar.gz安裝,可能會報錯:ImportError: No module named setuptools

安裝方式3

wget https://bootstrap.pypa.io/get-pip.py

python get-pip.py

對於python2.7版本

wget https://bootstrap.pypa.io/pip/2.7/get-pip.py

python get-pip.py

可以透過pip help來檢視幫助。簡單用的話只要pip searchpip install就好了。

相關文章