天天看點

python pip基本指令和鏡像源python pip 安裝鏡像源pip基本指令

python pip 安裝鏡像源

清華:https://pypi.tuna.tsinghua.edu.cn/simple

阿裡雲:http://mirrors.aliyun.com/pypi/simple/

中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/

華中理工大學:http://pypi.hustunique.com/

山東理工大學:http://pypi.sdutlinux.org/

豆瓣:http://pypi.douban.com/simple/

pip基本指令

1.pip install SomePackage:安裝包

2.pip list --outdated:列出哪些包已過時

3.pip install --upgrade SomePackage:更新包

4.pip uninstall SomePackage:解除安裝包

5.pip install -i 鏡像源

(具體鏡像源使用推薦這位老哥的 https://blog.csdn.net/sinat_21591675/article/details/82770360)