python 常用的几个镜像源

一般使用python安装库,会用到pip install libName ,,这个会在Python的官方源pypi.python.org/pypi 下载,有时会因为超时会抛异常无法下载成功。所以可以选择一些比较稳定速度比较快的国内镜像来下载python库。

在线下载命令格式为:

pip install -i 镜像源网址  scrapy

  • 国内源:

清华: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/


转自:

1.http://www.cnblogs.com/wqpkita/p/7248525.html

2.https://blog.csdn.net/yamadeee/article/details/80178996

你可能感兴趣的:(Python)