1.在vs code 上安装Remote ssh
2. 配置登陆信息
3.远程linux服务器,本地python环境下安装ptvsd。pip3 install ptvsd
在vs code 中访问远程文件,F5 。如果配置好了,那么打断点就可以调试了。如果没有配置好,那么配置launch.json
我的配置
{
"type": "python",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}"
}
来源:CSDN
作者:ppp11
链接:https://blog.csdn.net/qqjjjaa11/article/details/103479386