当前位置:   article > 正文

conda create -n pytorch python==3.7报错Solving environment: failed string ‘~’ : invalid character(s)_conda create -n python 3.7报错

conda create -n python 3.7报错

出现这种情况的原因是:
先找到.condac文件。而.condac文件可通过在anaconda cmd中输入“conda config --show-sources"找到:
在这里插入图片描述
将以下的内容替换.condac文件里面的内容即可。(在这篇博文https://www.cnblogs.com/johnyang/p/13417374.html

channels:
  - defaults
show_channel_urls: true
channel_alias: https://mirrors.tuna.tsinghua.edu.cn/anaconda
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

修改好了之后就退出cmd,重新进入。激活conda activate,进入base环境下面,然后创建pytorch环境:conda create -n pytorch python==3.8(这个版本你根据自己的版本来),python版本通过输入查看:如下:
在这里插入图片描述
然后就是创建pytorch环境成功。可以输入conda info --envs查看环境
在这里插入图片描述
然后激活pytorch:conda activate pytorch 进入pytorch环境下(我目前已经是再pytoch环境下了)
在这里插入图片描述

然后再pytorch环境下执行以下代码进行安装pytorch包:

conda install pytorch torchvision cpuonly -c pytorch
conda install pytorch torchvision cpuonly
  • 1
  • 2

安装完成需测试是否安装成功,测试方法为:
(1)激活pytorch:activate pytorch

(2)进入python:python

(3)测试numpy:import numpy

(4)测试pytorch:import torch

如果说提示没有numpy,那么你可以没有进入到pytorch环境,你把pytorch包安装到了base环境下。重新激活pytorch,进入pytorch环境下,然后重新安装以下pytorch包。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/639202
推荐阅读
相关标签
  

闽ICP备14008679号