首页 > 编程语言 > 详细

python安装第三方库--换镜像源

时间:2019-08-01 19:17:14      阅读:114      评论:0      收藏:0      [点我收藏+]

python安装第三方库--换镜像源

1. 更换anaconda源

清华大学镜像:清华大学镜像

anaconda下载地址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

更换仓库镜像源命令:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

2. 更换pip源

在python安装目录的bin目录下运行命令:

cd ~/.pip

如果不存在该文件夹则:

mkdir ~/.pip
cd ~/.pip
touch pip.conf
vim pip.conf

在pip.conf中添加如下内容:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

保存即配置好了pip镜像源。

3. 以下载pytorch0.4.0为例

sudo pip install torch==0.4.0 -f https://download.pytorch.org/whl/cu90/stable

运行上述命令即可快速下载pytorch0.4.0

参考博客:

安装Pytorch0.4.0需要填的坑

python安装第三方库--换镜像源

原文:https://www.cnblogs.com/shyern/p/11284652.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!