vscode 环境配置

发布时间:2023年12月18日

必备插件

在这里插入图片描述
在这里插入图片描述

配置调试

{
    // 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: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "externalTerminal",
            "justMyCode": true,
            "args": ["--port", "1593"]
        }
    ]
}
文章来源:https://blog.csdn.net/weixin_44533869/article/details/135005928
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。