pycharm在创建虚拟环境时报错

pycharm在创建虚拟环境时报错@TOCpycharm在创建虚拟环境时报错#pycharm,虚拟环境不想在base环境中跑程序,可以建立一个自己的环境。但是在cmd中输入condacreate-nnew_environment_namepython==3.6的命令时报错CondaHTTPError:HTTP000CONNECTIONFAILEDforurlhttps://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64/current_repodata.

大家好,欢迎来到IT知识分享网。pycharm在创建虚拟环境时报错

@TOCpycharm在创建虚拟环境时报错

#pycharm,虚拟环境

不想在base环境中跑程序,可以建立一个自己的环境。但是在cmd中输入conda create -n new_environment_name python==3.6的命令时报错CondaHTTPError: HTTP 000 CONNECTION FAILED for url https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64/current_repodata.json,为了解决问题:

1、打开文件“C:\Users\Hou.condarc”,将该文件用记事本打开,原本的内容大致是

ssl_verify: true
channels:

  • https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  • https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  • https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  • https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  • default
    show_channel_urls: true

此时需要将“https”改为“http”、把“default”这一行删掉,变为:

ssl_verify: true
channels:

  • http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  • http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  • http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  • http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    show_channel_urls: true

2、在cmd中输入conda create -n new_environment_name python==3.6创建一个名为“new_environment_name”、Python的版本是3.6的新环境

3、输入“activate new_environment_name”激活新环境

4、输入“deactivate”退出虚拟环境

5、通过命令“conda info –envs”查看conda环境下所有的虚拟环境

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/14333.html

(0)

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信