此處就作個記載吧!!!!python
python 使用pip安裝第三方程序包,快捷又方便 ,安裝前提是須要安裝setuptools 。git
注意:python版本有對應的pip程序github
setuptools 安裝
https://github.com/pypa/setuptools/releaseside
#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語言自帶的命令行工具,它能夠安裝和管理第三方軟件包。blog
pip install xxxxx(包名) 便可
pip uninstall xxxx(包名)
pip -V 查看版本及服務於哪一個Python版本ip