How does one get the MySQLdb module for Python 2.6?

I am on a CentOS 5 distribution and easy_install MySQLdb does not work for me. (cant find MySQLdb at pypy.python.org/simple/)

Thanks!

link|improve this question

66% accept rate
You might consider pymysql, which is generally compatible with MySQLdb, but is pure Python, and so extremely portable. – Russell Borogove Jun 22 '11 at 20:49
feedback

1 Answer

up vote 1 down vote accepted

Have you tried it manually?

  1. download the source
  2. untar the file
  3. cd into the MySQL-python-1.2.3 folder
  4. python setup.py install
link|improve this answer
was just starting to try to do that....Thanks! Doesn't the install have to happen in a specific directory? or it doesnt matter...i will be calling mysqldb from a django project – algorithmicCoder Jun 22 '11 at 20:28
I believe the setup can be done anywhere. It will put everything where it needs to be such that whenever and where ever python is run, it will have access to the mysqldb modules. – Dirk Jun 22 '11 at 20:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.