This is what I tried:

$ easy_install-2.6 -d /home/user/lib/python2.6 MySQLdb  
Searching for MySQLdb  
Reading http://pypi.python.org/simple/MySQLdb/  
Couldn't find index page for 'MySQLdb' (maybe misspelled?)  
Scanning index of all packages (this may take a while)  
Reading http://pypi.python.org/simple/  
No local packages or download links found for MySQLdb  
error: Could not find suitable distribution for Requirement.parse('MySQLdb')  
link|improve this question

63% accept rate
feedback

2 Answers

up vote 63 down vote accepted

You have the wrong package name.

MySQL-python is the right one:

easy_install MySQL-python

or

pip install MySQL-python
link|improve this answer
I looks like this is currently installing MySQL-python 1.2.2, which does not contain MySQLdb 1.2.3 – BryanWheelock Jun 15 '10 at 18:41
Right you are. Link fixed. – bernie Jun 15 '10 at 18:43
feedback

Adam is right but before you run easy_install MySQL-python you need to make sure python-dev is installed as it is not installed by default.

Install is with apt-get install python-dev.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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