欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

利用 vs code 远程调试 ubuntu 上的 python 程序

程序员文章站 2024-01-13 15:06:40
...

1、在 ubuntu 上安装 ptvsd,并运行 python 程序  aaa.py 。

sudo pip install ptvsd -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
python -m ptvsd --host 0.0.0.0 --port 1234 --wait ./aaa.py

2、在 vscode 上安装扩展 python 和 Remote - SSH。

3、在 "Remote Explorer" 中增加对远程机器的连接,打开 aaa.py 所在文件夹,然后 “Start Debugging”。

 

参考:

1、https://blog.csdn.net/lanyu_01/article/details/103374163

2、https://github.com/microsoft/ptvsd