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环境(纯入门轻喷)_第1张图片

    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张图片

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

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

调试与配置:

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

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

文件-首选项-设置-扩展-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环境(纯入门轻喷)_第5张图片
将anaconda软件加入系统环境变量:
windows安装配置pytorch+vscode环境(纯入门轻喷)_第6张图片
windows安装配置pytorch+vscode环境(纯入门轻喷)_第7张图片

成功

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