解决:使用国内镜像下载python 的方法 国内镜像地址 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu...
首先查看当前conda的下载源 conda config --show 由于国内无法访问很多国外网站导致下载一些包时速度较慢或者无法下载,我们需要修改conda的默认下载源。 #创建.condarc文件,该文件是conda的配置文件 touch ~/.condarc #用vim编辑器向.condarc写入下列源信息(清华源) channels: - defaults show_channel_urls: true defa...
1 查看源 查看命令: #显示自己的Anaconda使用的是什么镜像源condaconfig--show 2 添加源 更换Anaconda清华源: condaconfig--add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64/condaconfig--add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64/condaconfig-...
添加清华镜像源(解决conda库下载慢问题) 复制,粘贴,运行以下代码: ‘conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --set show_channel_urls yes conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ conda con...