windows安装配置pytorch+vscode环境(纯入门轻喷)

这篇具有很好参考价值的文章主要介绍了windows安装配置pytorch+vscode环境(纯入门轻喷)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

学习路径

环境

配置目标

  1. 为机器学习项目服务-项目需要pytorch库
  2. 适应自己的编程习惯-惯用vscode,我已经安装了python插件

环境需求递归

  1. github项目:ConvLSTM_pytorch->需要pytorch库
  2. pyTorch环境->需要cuda(有GPU情况下)&conda
  3. CUDA(无需手动安装)
    1. GPU为外接1060 3G(穷)
      windows安装配置pytorch+vscode环境(纯入门轻喷)

    2. 电脑上安装的是Py3.10(实际上不需要,后面会在虚拟环境中重新安装)

    3. 所以应该选择pytorch-1.12.1-py3.10-cuda11.6的版本 (此处版本考虑并不必要,因为虚拟环境配置时会自动安装)故应选择cuda11.6.2使用

    4. 但anatorch会自动配置cuda环境调用显卡,故不用手动安装。

    5. 所以首先安装conda(anaconda),然后安装PyTorch环境,最后配置。

软件安装

  1. conda-anaconda-软件包/环境管理器
    1. Anaconda官网下载安装
    2. 开始菜单打开Anaconda Prompt
    3. 建立环境
    conda create -n pytorch_env python=3.10     (自己的python版本(并不需要和已经安装的版本相同))
    
    1. 更换下载源:csdn-conda下载换源
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    conda config --set show_channel_urls yes
    
    1. 进入环境
    conda activate pytorch_env
    
  2. PyTorch环境配置及安装
    1. 从官网找到合适的Pytorch版本并复制指令:pytorch官网
      windows安装配置pytorch+vscode环境(纯入门轻喷)

    2. 在刚刚建立好的pytorch_env环境下使用指令

    3. 弹出详情列表,按Y回车安装

调试与配置:

  1. 命令行下:
    windows安装配置pytorch+vscode环境(纯入门轻喷)
    成功

  2. vscode下:
    windows安装配置pytorch+vscode环境(纯入门轻喷)
    运行失败

文件-首选项-设置-扩展-Python-在settings.json中编辑
在settings.json文件中修改如下:

"python.defaultInterpreterPath": "C:\\Users\\amazc\\AppData\\Local\\Programs\\Python\\Python310\\python.exe",

改为:

"python.defaultInterpreterPath": "C:\\Users\\amazc\\anaconda3\\envs\\pytorch_env\\python.exe",

即pytorch环境下python解释器
此时右下角弹出vscode的python拓展,提示更换解释器路径,更换即可。
在最后输入

"code-runner.executorMap":

这一句后会出现一大串提示,点第一个一样的后就会导入一大块语句
找到 “python”: “python -u” 这块,将其修改为对应的pytorch环境下python解释器路径即可。
最后是所有修改:

    //以下是安装pytorch时修改的
    "code-runner.executorMap":{
        "javascript": "node",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "php": "php",
        "python": "C:\\Users\\amazc\\anaconda3\\python.exe",
        "perl": "perl",
        "perl6": "perl6",
        "ruby": "ruby",
        "go": "go run",
        "lua": "lua",
        "groovy": "groovy",
        "powershell": "powershell -ExecutionPolicy ByPass -File",
        "bat": "cmd /c",
        "shellscript": "bash",
        "fsharp": "fsi",
        "csharp": "scriptcs",
        "vbscript": "cscript //Nologo",
        "typescript": "ts-node",
        "coffeescript": "coffee",
        "scala": "scala",
        "swift": "swift",
        "julia": "julia",
        "crystal": "crystal",
        "ocaml": "ocaml",
        "r": "Rscript",
        "applescript": "osascript",
        "clojure": "lein exec",
        "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
        "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
        "racket": "racket",
        "scheme": "csi -script",
        "ahk": "autohotkey",
        "autoit": "autoit3",
        "dart": "dart",
        "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
        "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
        "haskell": "runhaskell",
        "nim": "nim compile --verbosity:0 --hints:off --run",
        "lisp": "sbcl --script",
        "kit": "kitc --run",
        "v": "v run",
        "sass": "sass --style expanded",
        "scss": "scss --style expanded",
        "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
        "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "sml": "cd $dir && sml $fileName"
    },
    "python.defaultInterpreterPath":"C:\\Users\\amazc\\anaconda3\\python.exe",
    //以上是安装pytorch时修改的

测试可以使用,但出现此情况:
windows安装配置pytorch+vscode环境(纯入门轻喷)
将anaconda软件加入系统环境变量:
windows安装配置pytorch+vscode环境(纯入门轻喷)
windows安装配置pytorch+vscode环境(纯入门轻喷)

成功文章来源地址https://www.toymoban.com/news/detail-402775.html

到了这里,关于windows安装配置pytorch+vscode环境(纯入门轻喷)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包