How can I persistently modify the Windows environment variables from a Python script? (it\'s the setup.py script)
I\'m looking for a standard function or module to u
In the os module, there is getenv and putenv functions. However, it seems that the putenv is not working correctly and that you must use the windows registry instead
Look at this discussion