当前位置:   article > 正文

使用anaconda安装pytorch,并配置vscode_ubuntu vscode配置pytorch环境

ubuntu vscode配置pytorch环境

anaconda安装

下载安装包

官网

设置国内源并更新

如果windows,启动anaconda prompt,输入命令,生成配置文件

conda config --set show_channel_urls yes
  • 1

此时会在用户目录下生成.condarc文件。windows路径C:/Users/{当前用户}/.condarc,Linux为~/.condarc
然后替换文件为如下内容,设置为清华源,国内源更新时快非常多

channels:
  - defaults
show_channel_urls: true
default_channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - 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

最后更新anaconda,这非常重要,否则安装pytorch可能会出错

conda update --all
  • 1

anaconda的环境配置

anaconda安装后,直接点开cmd,运行conda不生效。
解决办法:环境变量PATH添加{安装目录}\Scripts

安装pytorch

pytorch的安装命令可能会一直变,所以建议从pytorch官网找最新的。下行为安装 pytorch 1.9 + cuda11.1 的命令

conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch -c conda-forge
  • 1

vscode无法调用anaconda集成环境

使用 vscode 配合 anaconda 调试 python 程序,却发现怎么都无法正常启动。大致错误为:

ImportError: DLL load failed: 找不到指定的模块。

仔细检查,应该因为启用的是 powershell 环境。
解决办法:把默认的调试窗口变成cmd,具体操作是在vscode的setting.json里添加一行:

“terminal.integrated.shell.windows”: “C:\WINDOWS\System32\cmd.exe”,

  1. 系统的setting.json:点击左下角的齿轮按钮,或 File-Preferences-Settings。点击右上角的翻转按钮(Open Settings(JSON))即可。在这里插入图片描述
    在这里插入图片描述
  2. 当前文件夹(当前项目)的settings:当你在VScode中打开一个文件夹时,会自动创建一个settings.json和一个launch.json文件,点击打开即可。之后添加上述语句:
    在这里插入图片描述
    在这里插入图片描述
  3. 重启vscode
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/313958
推荐阅读
相关标签
  

闽ICP备14008679号