I have a directory which hosts all my django app. *"C:\My_Projects".* I want to add this directory to my pythonpath so I can call the apps directly. I have *right clicked My Computer > Properties > Advanced System Settings > Environmental Variables. Then I added C:\My_Projects\; to my Path variable* but it still doesn't read the coltrane module. "Error: No module named coltrane"

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

You know what has worked for me really well on windows. My Computer > Properties > Advanced System Settings > Environment Variables > Then under system variables I create a new Variable called "PythonPath". In this variable I have "C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk;C:\other-foolder-on-the-path"

enter image description here This is the best way that has worked for me which I hadn't found in any of the docs offered.

link|improve this answer
1  
To modify environment variables on Windows I highly recommend Path Editor – Piotr Dobrogost May 3 '11 at 7:23
feedback

These solutions work, but they work for your code ONLY on your machine. I would add a couple of lines to your code that look like this:

import sys
if "C:\\My_Python_Lib" not in sys.path:
    sys.path.append("C:\\My_Python_Lib")

That should take care of your problems

link|improve this answer
Works for me. Win7, no problem. – dmitko Sep 13 '10 at 16:13
nice tip this one, Thanks – mongoose_za Sep 13 '10 at 16:21
feedback

From Windows command line:

set PYTHONPATH=%PYTHONPATH%;C:\My_python_lib

To set the PYTHONPATH permanently, add the line to your autoexec.bat. Alternatively, if you edit the system variable through the System Properties, it will also be changed permanently.

link|improve this answer
1  
Your suggestion worked thanks. What do you mean add it to the autoexec.bat though? – mongoose_za Sep 13 '10 at 16:21
Worked but everytime I open dos I had to set the path. – mongoose_za Jan 31 '11 at 20:23
feedback

You need to add to your PYTHONPATH variable instead of Windows PATH variable.

http://docs.python.org/using/windows.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.