conda/pip 为啥现在国内镜像不能用了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了conda/pip 为啥现在国内镜像不能用了相关的知识,希望对你有一定的参考价值。
参考技术A 清华大学不在提供维护了 参考技术B刚刚试了一下,pypi 清华镜像是可以使用的
临时使用方案:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package设为默认
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
用国内镜像源pip加速安装模块
记住,如果使用了virtualenv,一定要先workon进入虚拟环境再执行包安装命令。
pip install -i https://pypi.douban.com/simple/ 模块名(如:django==1.9)
以上是关于conda/pip 为啥现在国内镜像不能用了的主要内容,如果未能解决你的问题,请参考以下文章