In my django project, the command ./manage.py [command] results in this error message:
: No such file or directory
The command python manage.py [command] works well. I tried with syncdb and runserver.
I tried chmod a+x manage.py, but the problem persists.
My manage.py:
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
I use django 1.4.1 in a virtualenv.
How can I fix this to use manage.py [command]?
/usr/bin/env pythongive you when entered into the terminal? – Martijn Pieters Sep 3 '12 at 17:52python manage.py [command]wouldn't work in a wrong directory ;-) – Marcos da Silva Sampaio Sep 3 '12 at 17:53