I can't run manage.py because when i cd into my project folder, it seems as if django is not on my python path. My project folder is symlinked to a directory out of the webapps directory, so this might be an issue -- but I can't seem to find a way to run the proper version of python with the proper path. Tips?
asked 28 Aug '11, 19:36 Brian D |
The problem here is that our Python site customizations (which put your You can work around it by setting your Python search path at the command line, eg:
Or, you could open a separate terminal and run your management commands from Hope that helps! answered 28 Aug '11, 19:51 seanf That's just what I needed. I'm running 2.6, so I just put that in my .bash_profile and all is well. Thanks seanf!
(28 Aug '11, 22:56)
Brian D
|