加快conda install\pip install下载速度

Python开发的时候需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下。

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

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

pip:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy

conda:

    https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

特别好用~!

猜你喜欢

转载自blog.csdn.net/a417197457/article/details/80807128