First, I'm following the tutorial on the Django Poll application on their site and have hit a few road blocks.
I've installed Python 2.7 and Django 1.3
Created a new project with
django-admin.py startproject myproject
I got mysql up and running and entered the credentials in settings.py
Then when I try to run
python manage.py syncdb
it puked ... http://pastie.org/2294709
Then when I installed Mysql-python
easy_install mysql-python
Success! ...
Searching for MySQL-python
Best match: MySQL-python 1.2.3
Adding MySQL-python 1.2.3 to easy-install.pth file
Using /Library/Python/2.6/site-packages
Processing dependencies for MySQL-python
Finished processing dependencies for MySQL-python
so I try again
python manage.py syncdb
Still pukes the same message as above
Am I missing Something?
DATABASESin settings.py?