1

I'm developing python in Microsoft visual studio,

The python code is also executed in linux OS machine, which I have a connection to.

Is it possible for the visual studio to attach to the linux process,

for debugging purposes?

Y.S
  • 1,860
  • 3
  • 17
  • 30

1 Answers1

1

You can take a read through the Cross-Platform Remote Debugging article supplied by Microsoft for PTVS.

You'll need to install the ptvsd package on your Linux machine, and with a simple import and set-up, you'll be able to connect to it remotely from Visual Studio.

Christian Witts
  • 11,375
  • 1
  • 33
  • 46