Re: Help with manage.py syncdb

2009-11-17 Thread Adam Knight
What everyone else said. But, also, Snow Leopard made Python complicated. It ships with 2.4, 2.5, and 2.6. There's an easy_install for each version. If you easy_install the MySQLdb module without specifying which easy_install you're using, it will use whatever the default version of Python i

Re: Help with manage.py syncdb

2009-11-17 Thread Lora
Do you have MySQLdb installed? See comments at the top: http://code.djangoproject.com/browser/django/trunk/django/db/backends/mysql/base.py jd_python wrote: > Hello there, > > I am a newbie learning Python/Django... > > Am using the following tutorial located at: > > http://bit.ly/eIdT > > Creat

Re: Help with manage.py syncdb

2009-11-16 Thread Kenneth Gonsalves
On Tuesday 17 Nov 2009 11:10:15 am jd_python wrote: > raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e) > django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb > module: No module named MySQLdb > you did not install MySQLdb which is the python module used to connect

Help with manage.py syncdb

2009-11-16 Thread jd_python
Hello there, I am a newbie learning Python/Django... Am using the following tutorial located at: http://bit.ly/eIdT Created a mysite database in MySQL 5 running on Snow Leopard. Edited the settings.py file to look like this: DATABASE_ENGINE = 'mysql' # 'postgresql_psycopg2', 'postgr