1. 程式人生 > >pip安裝第三方軟件包

pip安裝第三方軟件包

.py set roc 管理系統 github cdb lease images install

此處就做個記載吧!!!!

python 使用pip安裝第三方程序包,快捷又方便 ,安裝前提是需要安裝setuptools 。

註意:python版本有對應的pip程序

setuptools 安裝
https://github.com/pypa/setuptools/releases

#cd setuptools-38.5.1
python setup.py install

pip安裝
https://github.com/pypa/pip/releases
#cd pip-9.0.1
#python setup.py install


Q: 什麽是 pip ?
A: pip 是Python的軟件包管理系統,Python語言自帶的命令行工具,它可以安裝和管理第三方軟件包。

pip install xxxxx(包名) 即可
pip uninstall xxxx(包名)
pip -V 查看版本及服務於哪個Python版本

技術分享圖片

pip安裝第三方軟件包