python和其餘語言同樣,也有大量的第三方庫
在安裝python時默認都會安裝pip,安裝了pip後
在cmd.exe下能夠運行pippython
pip install 庫的名字
由於PyPi地址在國外,國內訪問速度慢有些地方甚至訪問不了,把鏡像源換爲國內地址速度簡直飛起阿里雲
國內一些經常使用的軟件源以下:
阿里雲:https://mirrors.aliyun.com/pypi/simple/
中國科技大學:https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣:https://pypi.douban.com/simple/
清華大學:https://pypi.tuna.tsinghua.edu.cn/simple/
中國科學技術大學:https://pypi.mirrors.ustc.edu.cn/simple/code
以阿里雲鏡像源爲例ip
pip install 庫的名字 -i https://mirrors.aliyun.com/pypi/simple/
pip list
pip uninstall 庫的名字