[Answered ]-South django migrate

2👍

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

python manage.py ...

0👍

You could also make it executable:

sudo chmod u+x

So you can run it like ./manage.py

Leave a comment