vote up 0 vote down star

Hi All I am using Python 2.6.1 and I want to connect to MySQLdb, I installed mySQL in my system, and I am trying to connect MySQL-python-1.2.2.win32-py2.6 from http://www.codegood.com/archives/4 site but its not working while running my application its saying that No module named MySQLdb

please any one provide me the proper setup for MySQLdb.

thanks in advance

flag

0% accept rate
Have you tried the one from sourceforge.net/projects/mysql-python/… ? (Yes, as in Py2.5 exe-file) – Erlend Jul 16 at 6:11
I have tried its not working is there any other which it works fine, and I am using windows xp – SKSK Jul 16 at 6:16

4 Answers

vote up 2 vote down

The module is not likely in your python search path..

Check to see if that module is in your Python Path... In windows...you may find it in the registry

HKLM\Software\Python\PythonCore\2.6\PythonPath

Be careful editing it...

You may also alter the Python Path programmaticly by the following

import sys
sys.path.append('somepath_to_the_module_you_wanted')

import the_module_you_wanted

Hope that helps

link|flag
vote up 0 vote down

generally, (good) python modules provide a 'setup.py' script that takes care of things like proper installation (google for 'distutils python'). MySQLdb is a "good" module in this sense.

since you're using windows, things might be a bit more complex. I assume you already installed MySQLdb following the instructions and it still gives this problem. what I would do is open a cmd.exe window, cd to the directory containing the 'setup.py' script and there type something like C:\Python26\Python.exe setup.py install

if this does not work, then grab the module somewhere else, maybe at the place where it is actively developed: http://sourceforge.net/projects/mysql-python/

link|flag
vote up 0 vote down

See this post on the mysql-python blog: MySQL-python-1.2.3 beta 2 released - dated March 2009. Looks like MySQLdb for Python 2.6 is still a work in progress...

link|flag
Hi Everitt, I have downloaded has u specified link, but in that its not there setup file, actually I am using windows XP after installation we need to set any path ? if its not what could be the reason for " No module named MySQLdb" ? – SKSK Jul 17 at 5:56
see the answer with 2 votes above for setting the path. Which file did you install from the blog? Did you try easy_install MySQL-python? Have you tried importing from the Python shell? Also, take a look at these forum comments: sourceforge.net/forum/…. – Dave Everitt Jul 17 at 11:06
vote up 0 vote down

The best setup for Windows that I've found:

http://www.thescotties.com/mysql-python/test/

link|flag

Your Answer

Get an OpenID
or

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