美文网首页初学者
VScode | 执行python

VScode | 执行python

作者: yuanCruise | 来源:发表于2019-12-26 20:14 被阅读0次
    1.本地安装python解释器。
    2.在vscode的extensions中搜索python,点击安装Python和Python for VSCode。
    3.把本地的解释器所在目录拖到WORKSPACE中。把需要执行的python文件所在的目录拖到WORKSPACE中。
    4.在python解释器目录下会有一个launch.json.
    {
      "version":"0.2.0",
      "configurations":[
      {
    "type":"node",
    "request":"launch",
    "name":"Launch Program",
    "program":"${file}"
    },
    {
          "name": "Python: 当前文件",
            "type": "python",
           "request": "launch",
           "program": "${file}",
            "console": "integratedTerminal"
    }
    ]
    }
    

    上述配置文件可能会导致运行python脚本时报错:因此建议直接把{}里面的东西都注释掉。

    # [Cannot find runtime 'node' on PATH - Visual Studio Code and Node.js](https://stackoverflow.com/questions/37823194/cannot-find-runtime-node-on-path-visual-studio-code-and-node-js)
    
    

    上述配置文件中的第二个{}里面的内容会在执行python脚本时使用系统系统路径中的解释器,不会使用自定义的解释器,因此也建议注释掉,自己设定解释器路径。

    5.自己设定解释器路径

    按F1,并搜索open setting,并继续在内部搜索python.pythonpath,将python解释器的绝对路径进行修改即可。

    D:\MYInstallSoft\python3\python3.exe
    
    6.执行python脚本

    打开python文件,按F5,即可执行。

    相关文章

      网友评论

        本文标题:VScode | 执行python

        本文链接:https://www.haomeiwen.com/subject/ucvloctx.html