目前
Ubuntu常用命令
如何远程连接服务器?
如何创建anaconda虚拟环境?
如何从github上下载代码到服务器?
如何移动、复制、删除文件夹?
如何在服务器间传输文件?
如何在服务器后台运行代码?
2.5 创建anaconda虚拟环境一直出现HTTP错误的问题
相关命令
conda配置文件打开、退出与编辑(VIM中的保存和退出)
① 打开:
vim .condarc
② 退出:
:w 保存文件但不退出vi
:w file 将修改另外保存到file中,不退出vi
:w! 强制保存,不推出vi
:wq 保存文件并退出vi
:wq! 强制保存文件,并退出vi
:q 不保存文件,退出vi
:q! 不保存文件,强制退出vi
:e! 放弃所有修改,从上次保存文件开始再编辑命令历史
③ 编辑:(进入编辑模式方可编辑)
进入编辑模式,按键i,此时可以移动光标到想要修改的位置,即可修改内容(此时左下角进入到insert的模式,代表现在是编辑模式)
退出编辑模式,并保存,按键esc退出insert模式,然后按shift+:(shift+冒号键),然后输入wq,保存退出。
完整报错:
Collecting package metadata (current_repodata.json): failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/noarch/current_repodata.json>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
If your current network has https://www.anaconda.com blocked, please file
a support request with your network engineering team.
'https://repo.anaconda.com/pkgs/main/noarch'
问题解决:
- 打开conda配置文件
vim .condarc - 删除原文件内容并替换为下面的
channels:
- defaults
show_channel_urls: true
default_channels:
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
custom_channels:
conda-forge: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
msys2: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
bioconda: http://mirrors.tuna.tsinghua.edu.c

最低0.47元/天 解锁文章
3209

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



