Python Forum

Full Version: [fixed] Debugging in a remote server using VScode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'm wondering if an experienced user can help in debugging (python codes) in a remote server using VScode? especially when environments must be loaded! I'm stuck for 2 days on it!

So far, i can:
  • open and run codes in the remote server (SSH tunnel has been created)
  • i can also debbug a basic code (with or without arguments)

but i fail when it's necessary to load environments (module load & source) and to debug with!.

Among other documents, i follow this one, so i've:
  1. created the config file in the .ssh folder (Windows side); this one contains the RemoteCommand that is supposed to load the environments => however when i type module list in the terminal, modules have not been loaded
  2. on the (linux) server side, the launch.json file have been made including args (for the extra arguments) and env (for the export variables if i well understand) (the .env file might be made in a later stage)
  3. on the server, the settings.json file has also be updates

Unfortunately, the debugger seems to use its own modules, and then many python modules are missing accordingly when i debug my code

Does somebody has experience in that specific, tricky and highly specialized topic?
(who knows)

Paul
Ok, I went in the wrong direction because i misunderstood the doc; the webdsite (see link) confuded me a bit more ... in fact is simplier than i supposed (i just had to follow the "attach" debugger topic !