Re: 'python manage.py migrate' command gives error even after installing south

2013-11-22 Thread Nigel Legg
Check the documentation for south and go through the tutorial at http://south.readthedocs.org/en/latest/tutorial/part1.html - you need to do an initial migration, and then an auto migration. Also, the taceback you posted says there is a syntax error in the question model Cheers, Nigel 07914

Re: 'python manage.py migrate' command gives error even after installing south

2013-11-22 Thread James Turley
line 5, models.py - you've capitalised Class. It should just be 'class', all lower case. JT On Fri, Nov 22, 2013 at 4:41 AM, puneet pandey wrote: > I was going through Django tutorials and found the command - 'python > manage.py migrate' to give output as 'unknown

'python manage.py migrate' command gives error even after installing south

2013-11-22 Thread puneet pandey
I was going through Django tutorials and found the command - 'python manage.py migrate' to give output as 'unknown command' . So i searched for it and found that its most probably due to 'south' not installed. i checked it on python shell by giving the command - 'import south' which resulted in