Problem compiling MySQLdb for Python 2.6 on Win32 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:58:05Z http://stackoverflow.com/feeds/question/316484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32 8 Problem compiling MySQLdb for Python 2.6 on Win32 Technical Bard 2008-11-25T06:14:20Z 2009-11-24T16:51:00Z <p>I'm using Django and Python 2.6, and I want to grow my application using a MySQL backend. Problem is that there isn't a win32 package for MySQLdb on Python 2.6.</p> <p>Now I'm no hacker, but I thought I might compile it myself using MSVC++9 Express. But I run into a problem that the compiler quickly can't find <code>config_win.h</code>, which I assume is a header file for MySQL so that the MySQLdb package can know what calls it can make into MySQL.</p> <p>Am I right? And if so, where do I get the header files for MySQL?</p> http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/317332#317332 0 Answer by Bill Karwin for Problem compiling MySQLdb for Python 2.6 on Win32 Bill Karwin 2008-11-25T13:35:16Z 2008-11-25T13:35:16Z <p>Have you considered using a pre-built stack with Python, MySQL, Apache, etc.?</p> <p>For example: <a href="http://bitnami.org/stack/djangostack" rel="nofollow">http://bitnami.org/stack/djangostack</a></p> http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/317716#317716 1 Answer by Rafał Dowgird for Problem compiling MySQLdb for Python 2.6 on Win32 Rafał Dowgird 2008-11-25T15:29:51Z 2008-11-25T15:29:51Z <p>I think that the header files are shipped with MySQL, just make sure you check the appropriate options when installing (I think that sources and headers are under "developer components" in the installation dialog).</p> http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/319007#319007 7 Answer by Technical Bard for Problem compiling MySQLdb for Python 2.6 on Win32 Technical Bard 2008-11-25T21:51:20Z 2009-02-08T22:42:00Z <p>Thanks all! I found that I hadn't installed the developer components in MySQL. Once that was done the problem was solved and I easily compiled the MySQLdb for Python 2.6.</p> <p>I've made the package available at <a href="http://www.technicalbard.com/files/MySQL-python-1.2.2.win32-py2.6.exe" rel="nofollow">my site</a>.</p> http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/1137151#1137151 1 Answer by Dave Everitt for Problem compiling MySQLdb for Python 2.6 on Win32 Dave Everitt 2009-07-16T12:17:26Z 2009-07-16T12:17:26Z <p>Also see this post on the mysql-python blog: <a href="http://mysql-python.blogspot.com/2009/03/mysql-python-123-beta-2-released.html" rel="nofollow">MySQL-python-1.2.3 beta 2 released</a> - dated March 2009. MySQLdb for Python 2.6 is still a work in progress...</p> http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/1665955#1665955 0 Answer by Matt for Problem compiling MySQLdb for Python 2.6 on Win32 Matt 2009-11-03T08:28:38Z 2009-11-03T08:28:38Z <p>Thanks Technical Bard!</p> http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/1791371#1791371 0 Answer by Morag for Problem compiling MySQLdb for Python 2.6 on Win32 Morag 2009-11-24T16:51:00Z 2009-11-24T16:51:00Z <p>Thanks Technical Bard! I have been tearing my hair this afternoon tring to get MySQLdb working with 2.6. Cheers, M</p>