vscode python debugger 如何调试老版本python

找到老版本资源:

找到老版本python debugger插件,现在官方github 都是24之后的release 了,调不了3.6 老项目

pdb:

太麻烦

debugpy

vscode python debugger 的底层实现,我们可以指定老版本的debugger 来调试,如下配置。

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 Debugger: Django",
            "type": "debugpy",
            "request": "launch",
            "program": "${workspaceFolder}/cw-publish/manage.py",
            "args": [
                "runserver"
            ],
            "django": true,
            "envFile": "${workspaceFolder}/scripts/develop/envs.env",
            "debugAdapterPath": "/opt/conda/envs/work/lib/python3.6/site-packages/debugpy/adapter"
        }
    ]
}
相关推荐
d***95621 天前
爬虫自动化(DrissionPage)
爬虫·python·自动化
APIshop1 天前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
这儿有一堆花1 天前
重磅推出!Google Antigravity:一次 “以 Agent 为中心 (agent-first)” 的 IDE 革命
vscode·ai·ai编程·googlecloud
二川bro1 天前
AutoML自动化机器学习:Python实战指南
python·机器学习·自动化
杨超越luckly1 天前
基于 Overpass API 的城市电网基础设施与 POI 提取与可视化
python·数据可视化·openstreetmap·电力数据·overpass api
q***23571 天前
python的sql解析库-sqlparse
数据库·python·sql
18你磊哥1 天前
Django WEB 简单项目创建与结构讲解
前端·python·django·sqlite
月殇_木言1 天前
Python期末复习
开发语言·python
BBB努力学习程序设计1 天前
Python面向对象编程:从代码搬运工到架构师
python·pycharm
rising start1 天前
五、python正则表达式
python·正则表达式