zoukankan      html  css  js  c++  java
  • VS Code 调试树莓派上的python程序

    安装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": "~"
                    }
                ]
            }
        ]
    }
  • 相关阅读:
    maven 历史版本下载地址
    eclipse 热部署
    在线代码练习
    Intellij热部署插件JRebel
    模拟数据生成器
    电脑读取U盘总提示格式化
    变形金刚
    slamdunk正在做菜
    丧心病狂的计数
    小明在工作
  • 原文地址:https://www.cnblogs.com/qq812256/p/11373941.html
Copyright © 2011-2022 走看看