I am working on a simple Python (2.7.3) script, but I have to get the user’s Home Folder.
I tried:
import os
home_folder = os.environ["HOME"]
And it works fine when I’m running this code on IDLE, but if I launch it from the cmd, it gives me: «KeyError: 'HOME'»
Can someone tell me why? How can I solve this problem?
Windows uses
USERPROFILE, instead ofHOME. Windows doesn’t haveHOMEand other OSs don’t haveUSERPROFILE, so using either of these drops platform independence.To keep platform independence, you can use
expanduserfromos.path, like so:On a side note, you can use
print(os.environ)to see all the environment variables you to have access to, which shows thatIDLEhas extras.