How do I find out which directories are listed in my system’s PYTHONPATH variable, from within a Python script (or the interactive shell)?
|
|
|
|||
|
|
|
|
sys.path might include items that aren't specifically in your PYTHONPATH environment variable. To query the variable directly, use:
|
||||||||||||||||
|
|
|
Can't seem to edit the other answer. Has a minor error in that it is Windows-only. The more generic solution is to use os.sep as below: sys.path might include items that aren't specifically in your PYTHONPATH environment variable. To query the variable directly, use:
|
||
|
|
