由于Python默认的pip源是国外的,我们在国内安装一些依赖的时候下载速度会非常的慢,甚至可能会链接失败,所以国内有很多公司提供了pip镜像加速,比如清华,阿里,豆瓣等等。
具体链接如下:
阿里云 https://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) https://pypi.doubanio.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
永久修改pip源地址方法:
在CMD命令提示符界面输入如下命令:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
如果临时使用的话用下面的方式:
pip install 包名 -i https://pypi.doubanio.com/simple/
国内的这些源速度也是不一样的,你可以自行测试,选择最适合自己网络环境的源地址
安装pytorch使用国内镜像加速的方法一样的,如:
pip3 install torch torchvision torchaudio -i https://pypi.tuna.tsinghua.edu.cn/simple
1V1答疑支持
爱发电:点击前往