Python os.environ[“HOME”] works on idle but not in a script

前端 未结 3 1837
甜味超标
甜味超标 2021-02-07 08:18

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\"]
<
相关标签:
3条回答
  • 2021-02-07 08:41

    Sounds like you're trying to run this on Windows based entirely on your "[launching] it from the cmd". IDLE is giving you that as a convenience; on Windows use USERPROFILE instead of HOME. The %USERPROFILE% envar is the Win32 $HOME.

    0 讨论(0)
  • 2021-02-07 08:42

    Windows uses USERPROFILE, instead of HOME. Windows doesn't have HOME and other OSs don't have USERPROFILE, so using either of these drops platform independence.

    To keep platform independence, you can use expanduser from os.path, like so:

    import os.path
    home_folder = os.path.expanduser('~')
    

    On a side note, you can use print(os.environ) to see all the environment variables you to have access to, which shows that IDLE has extras.

    0 讨论(0)
  • 2021-02-07 08:43

    Windows has no HOME environment variable. It uses USERPROFILE instead. To solve the problem you can define a new variable "HOME" typing on your console:

    set HOME=%USERPROFILE%
    

    as a copy of the USERPROFILE variable.

    You can check that they are identical typing:

    echo %USERPROFILE%
    echo %HOME%
    

    It will work for the current session.

    0 讨论(0)
提交回复
热议问题