大家好,又见面了,我是你们的朋友全栈君。
1.conda查看源的信息:conda config –show-sources
查看源路径:conda config –set show_channel_urls_yes
conda添加源:conda config –add channels XXXXXXXXXXXXXX
例如:(
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 –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
)
PS:安装巨巨巨慢的时候可以在.condarc文件中把defaults#掉
删除源:conda config –remove channels ‘XXXXXXXXXXX’
删除所有源:conda config –remove channels
恢复默认源:conda config –remove-key channels
2.pip的源问题(linux环境下)可在home下创建.pip文件夹,然后sudo touch pip.conf创建pip.conf,按i在里边添加
[global]
index-url = http://pypi.douban.com/simple/或者https://pypi.tuna.tsinghua.edu.cn/simple,都可
trusted-host = XXXXX#设置源为可信主机,避免一些错误
disable-pip-version-check = true#取消pip检查,看个人情况来
pip timeout = 120
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/187014.html原文链接:https://javaforall.cn