问题
原本添加的清华镜像是
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环境时,但是还是出现了下载超时
conda create -n py36 python=3.6
错误CondaHTTPError: HTTP 000 CONNECTION FAILED for url
解决
因为是Mac os,镜像的路径需要指定一下。先删除原先的镜像,再添加新的镜像
- 删除镜像
conda config --remove-key channels
- 添加macos的清华镜像
conda config --add https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/osx-64/
conda config --add https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/osx-64/
- 查看添加的镜像
conda config --show