pip安装和conda安装的换源问题

1、pip换源
(1)临时性
以清华源为例:

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

(2)永久性
这需要修改配置文件:
1)在 windows 命令提示符cmd中,输入 %APPDATA%,进入此目录;
2)在该目录下新建名为 pip 的文件夹,然后在其中新建文件 pip.ini。(例如:“C:\Users\Administrator\AppData\Roaming\pip\pip.ini”)
3)在文件中填入下列内容并保存(仍以清华源为例,其他源类似):

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn

2、conda换源
建议采用永久性,并像如下加入这两个,具体原因我也不知道,因为只换第一个的话下载TensorFlow的时候还是又慢又超时:

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

换回默认源

conda config --remove-key channels

查看自己添加了哪些源

conda config --show channels

你可能感兴趣的:(tensorflow,anaconda,pip,python)