Windows Pycharm使用Pytorch相关报错

Pycharm报错内容:

Solving environment: failed

PackagesNotFoundError: The following packages are missing from the target environment:

这个错误提示表明你所指定的conda环境中找不到名为pytorch的包,可能是没在指定的环境安装Pytorch。

解决方案:

先在命令行使用以下命令添加清华镜像源:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

然后使用以下命令创建一个名为"pytorch_XX"的环境,并在其中安装pytorch

conda create --name pytorch_env pytorch

安装完成后,使用以下命令来激活环境:

conda activate pytorch_env

你可能感兴趣的:(pytorch,windows,python)