当前位置:   article > 正文

VSCode python -m 调试_vscode调试python -m

vscode调试python -m

若运行命令为 python -m x.test --args

  1. 安装 debugpy
python3 -m pip install debugpy 
  • 1
  1. 运行
python3 -m debugpy --listen 5678 --wait-for-client -m x.test --args
  • 1
  1. .vscode 文件夹下创建 launch.json
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Attach",
            "type": "python",
            "request": "attach",
            "connect": {
            "host": "localhost",
            "port": 5678
            }
        }
    ]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  1. 在对应代码前面打上断点
  2. 按下 Ctrl + F5F5 开始调试

参考链接

VSCode 调试在命令行输入的 Python 指令(如:带 - m 参数的 Python 指令)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/676410
推荐阅读
相关标签
  

闽ICP备14008679号