pycharm在创建虚拟环境时报错

pycharm在创建虚拟环境时报错,第1张

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:UsersHou.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环境下所有的虚拟环境

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5580719.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存