关于在pip中换国内镜像源安装方法

原博:https://blog.csdn.net/weixin_40240670/article/details/80616834

更改pip和conda的下载源为国内镜像

临时使用:

可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple

例如:pip install -i gevent https://pypi.tuna.tsinghua.edu.cn/simple,这样就会从清华这边的镜像去安装gevent库。

conda同理

以下为一些国内镜像源

阿里云 http://mirrors.aliyun.com/pypi/simple/ 
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 
豆瓣(douban) http://pypi.douban.com/simple/ 
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 

你可能感兴趣的:(关于在pip中换国内镜像源安装方法)