pip快速安装python库的方法(镜像网站)

1、可以使用的镜像

阿里云:http://mirrors.aliyun.com/pypi/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/ 
豆瓣:http://pypi.douban.com/simple/

2、使用方法
pip3 install xx(库名,一次性安装多个加空格) -i 镜像源网址 --trusted-host 镜像源host

pip3 install lxml tqdm pandas -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

你可能感兴趣的:(python,pip,python,阿里云镜像)