Variables not loading in IPython console
I was running some code in Spyder (in windows 10, python 3.8) without any problem. Interaction with python console was seamless and it recognized variables and reproduced all instructions.
When I try to run the same code in Pycharm it runs with exit code 0 but the console does not load any variables and if I insert a "hello world" in my code, it does not display it
Please sign in to leave a comment.
To run the code interactively in PyCharm, make sure that "Run with python console" option is enabled in your run/debug configuration.
This will allow to keep python session running and see your active variables.