I want to debug python code(on remote linux) in local windows with VS code.
what i did as follows?
In windows VS code, i can open remote linux python project using SSH.
Installed python debug tool ptvsd both in windows and remote linux.
Add code below in python project import ptvsd ptvsd.enable_attach(address = ('$linux_ip', $port)) ptvsd.wait_for_attach()
project 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: Remote Attach", "type": "python", "request": "attach", "connect": { "host": "$linux_ip", "port": $port }, "pathMappings": [ { "localRoot": "${workspaceFolder}", "remoteRoot": "$my_real_linux_ws" } ] } ] }
start run in remote linux
add break points in vs code, and run -> start debugging, then hit an issue as follows. I am confusing that test.py is not in dir /c4_working/test.py but in dir /c4_working/python_code/test.py. And this file is actually exist. So i am not sure why it want to find file in dir /c4_working/test.py? How to fix it? Thanks!