热线电话:13121318867

登录
2021-11-14 阅读量: 584
Conda 下载源

1.conda源更换为清华 源


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

2.conda源更换为中科大源


conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/conda config --set show_channel_urls yes记得删掉c:/usr/usrname里的.condarc原有的清华镜像

3.如果需要换回conda的默认源。查看了conda config的文档后,发现直接删除channels即可。命令如下:


conda config --remove-key channels

4,好用的pip可用的源:

#清华大学源
https://pypi.tuna.tsinghua.edu.cn/simple

#阿里巴巴源
https://pypi.doubanio.com/simple

#中国科学技术大学源
https://pypi.mirrors.ustc.edu.cn/simple/

#豆瓣源
https://pypi.doubanio.com/simple

5,两种方式pip和conda

#使用豆瓣源pip下载pandas包

pip install -i https://pypi.doubanio.com/simple pandas --trusted-host pypi.doubanio.com


#使用清华源conda下载pandas包

conda install --channel https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free


参考网址:
6.5481
0
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子