PyCharm not updating with environment variables

When any process get created it inherit the environment variables from it’s parent process (the O.S. itself in your case). if you change the environment variables at the parent level, the child process is not aware of it.

PyCharm allows you to change the environment variables from the Run\Debug Configuration window.
Run > Edit Configurations > Environment Variables ->

Images

Leave a Comment