美文网首页
2019-01-04 pip conda 使用国内源

2019-01-04 pip conda 使用国内源

作者: 多吃水果少吃肉 | 来源:发表于2019-01-04 15:00 被阅读0次

pip

只要新建一个配置文件,写上路径就行了
win下文件路径:C:\Users\你的用户名\pip\pip.ini
linux下文件路径:~/.pip/pip.conf
内容写:

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

conda

命令行下两条命令即可

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

相关文章

网友评论

      本文标题:2019-01-04 pip conda 使用国内源

      本文链接:https://www.haomeiwen.com/subject/abzhrqtx.html