Please pass -Xfrozen_modules=off when debuging #1703
Unanswered
Guilherme (guilhermesilva07113)
asked this question in
Q&A
Replies: 3 comments 3 replies
|
Your launch.json should be the way to do it (pythonArgs). |
0 replies
|
Hi! Thank you for your reply. Now I understood that But
tks |
0 replies
|
Guilherme (@guilhermesilva07113) You should be able to set |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi there!
When I try to run
Python Debugger: Debug Python FileI get:My python file has the following modules:
My
launch.json(even tough I am not using it):{ "version": "0.2.0", "configurations": [ { "name": "Python Debugger: Current File", "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", // internalConsole -> to prevent from printing "cwd": "${workspaceFolder}/src", "justMyCode": false, "python": "~/.conda/envs/time_series/bin/python", "pythonArgs": ["-Xfrozen_modules=off"], "args": [ "-d","../data/05_model_input/comportamento_ALG_PRM/dados_input_model.csv", "-o","../data/07_model_output", ] } ] }So, how/where do I pass
pass -Xfrozen_modules=off?Thanks in advance!
All reactions