遇到问题:安装2021版本后无法打开Anaconda Navigator
解决方案:使用管理员身份打开Avaconda Prompt,输入conda update anaconda-navigator
遇到问题:报错:
#安装在d盘
Fetching package metadata ...
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64/repodata.json>
Elapsed: -
分析是国内镜像源问题
解决方案:添加镜像文件
Linux用户可以通过修改用户目录下的 .condarc 文件。
Windows 用户无法直接创建名为 .condarc 的文件,可先执行 conda config --set show_channel_urls yes 生成该文件之后再修改。
阿里源
channels:
- defaults
show_channel_urls: true
default_channels:
- http://mirrors.aliyun.com/anaconda/pkgs/main
- http://mirrors.aliyun.com/anaconda/pkgs/r
- http://mirrors.aliyun.com/anaconda/pkgs/msys2
custom_channels:
conda-forge: http://mirrors.aliyun.com/anaconda/cloud
msys2: http://mirrors.aliyun.com/anaconda/cloud
bioconda: http://mirrors.aliyun.com/anaconda/cloud
menpo: http://mirrors.aliyun.com/anaconda/cloud
pytorch: http://mirrors.aliyun.com/anaconda/cloud
simpleitk: http://mirrors.aliyun.com/anaconda/cloud
ssl_verify: false
清华源
channels:
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
show_channel_urls: true
default_channels:
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- http://mirrors.tuna.tsinghua.edu.cn/

博客讲述了在安装2021版Anaconda后无法打开Navigator的问题,通过以管理员身份运行conda命令更新导致的错误。解决方案包括修改conda配置文件,添加国内镜像源如阿里云或清华源,以及执行conda update anaconda-navigator。在过程中遇到的文件路径问题和conda链接错误,最终通过卸载重装和清理缓存解决。此外,还介绍了如何配置pip的阿里云镜像源。
最低0.47元/天 解锁文章
1712

被折叠的 条评论
为什么被折叠?



