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"
|
feedback
|
|
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"
| |||||
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:
That should take care of your problems | |||||
|
feedback
|
|
From Windows command line:
To set the PYTHONPATH permanently, add the line to your | |||||||
feedback
|
|
You need to add to your PYTHONPATH variable instead of Windows PATH variable. | |||
|
feedback
|
This is the best way that has worked for me which I hadn't found in any of the docs offered.