VSCode配置(二)Python

功能与需要

一个IDE的功能要具备如下

  • 运行代码
  • 调试代码:设置断点+查看变量+ipython交互式debug
  • 查看代码:语法高亮与代码跳转
  • 编辑代码:代码提示

安装以下插件:(如果是远程调试,则要安装在远程服务器上)

  • Python (搜索@category:debuggers Python)
  • Pylance (代码提示与跳转补全)
  • isort (import 修正)

基础配置

选择左侧的Run & Debug创建编辑launch.json,在默认的基础上加上”python“字段指定python解释器的路径
VSCode配置(二)Python_第1张图片
文件如下

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: 当前文件",
            "type": "python",
            "python": "/home/hng/miniconda3/envs/hng/bin/python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": true
        }
    ]
}

你可能感兴趣的:(IDE,python,vscode,开发语言)