I'm having a small problem with my setup. I'm quite new to the django world so bare with me.
A friend who is familiar has set up a VPS (Ubuntu) for my project.
I'm now on my own trying to add a new module (south) so I can use manage.py migrate
When the virtualenv was deactivated I installed the module
sudo pip -E /var/www/env/example.com install south
touch /var/www/sites/example.com.wsgi
source /var/www/env/example.com/bin/activate
It appeared to go fine
yolk -l
I see the south module.
at which point I run on my site
$ phyton manage.py syncdb
$ python manage.py migrate
I get this error though:
$ python manage.py migrate
Unknown command: 'migrate'
Type 'manage.py help' for usage.
I don't have a full understanding of what I'm doing but I'm willing to learn.
Maybe someone could point me in the right direction? Am I missing something?