码迷,mamicode.com
首页 > 编程语言 > 详细

VS Code 调试树莓派上的python程序

时间:2019-08-18 21:59:23      阅读:875      评论:0      收藏:0      [点我收藏+]

标签:ISE   local   rip   nbsp   visit   mina   _for   launch   span   

安装pip install ptvsd

在py文件前面加代码

import ptvsd
ptvsd.enable_attach()
ptvsd.wait_for_attach()
ptvsd.break_into_debugger()

调试配置文件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: 当前文件",
            "type":"python",
            "request":"launch",
            "program":"${file}",
            "console":"integratedTerminal",
            "env": {"PYTHONPATH":"${workspaceRoot}"},
            "pythonPath": "${config:python.pythonPath}"
        },
        {
            "name": "Python: 附加",
            "type": "python",
            "request": "attach",
            "port": 5678,
            "host": "192.168.1.23",
            "pathMappings": [
                {
                    "localRoot": "${workspaceFolder}",
                    "remoteRoot": "~"
                }
            ]
        }
    ]
}

 

VS Code 调试树莓派上的python程序

标签:ISE   local   rip   nbsp   visit   mina   _for   launch   span   

原文地址:https://www.cnblogs.com/qq812256/p/11373941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!