%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Common Files\Adobe\AGL;H:\Python24
or whatever version of Python you have.
Normally you don't have to do this kind of thing, when you install Python properly with the downloaded MSI installer file.
Ene Uran
Posting Virtuoso
1,723 posts since Aug 2005
Reputation Points: 625
Solved Threads: 213
A short code to show PYTHONPATH ...
# show the system path for Python --> PYTHONPATH
import sys
print "These are the directories Python looks into for modules and source files:"
for folder in sys.path:
print folder
print "-"*30 # print 30 dashes
print "This would be your present working folder/directory:"
print sys.path[0]
vegaseat
DaniWeb's Hypocrite
5,989 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,417