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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值