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
The registry way is if you want to modify it permanently for everything, which I guess is what you want here since it's in setup.py.
Temporarily for just your process, then os.environ is the trick.