Dec-18-2024, 06:01 PM
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:
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:
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
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:
- created the config file in the
.ssh
folder (Windows side); this one contains theRemoteCommand
that is supposed to load the environments => however when i typemodule list
in the terminal, modules have not been loaded
- on the (linux) server side, the launch.json file have been made including
args
(for the extra arguments) andenv
(for the export variables if i well understand) (the .env file might be made in a later stage)
- 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