tags:

views:

27

answers:

1

I installed south and I try to use it to migrate now:

./manage.py schemamigration myapp --initial

I get a :

-bash: ./manage.py: Permission denied

and if I sudo I get:

sudo: ./manage.py: command not found

Response.

Whats wrong?

Thanks!

+1  A: 

Your manage.py isn't executable. Simply pass it to the interpreter instead.

python manage.py ...
Ignacio Vazquez-Abrams
Master!! You are the master! Thanks works!
MacPython