Problem compiling MySQLdb for Python 2.6 on Win32 - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T14:35:08Zhttp://stackoverflow.com/feeds/question/316484http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win329Problem compiling MySQLdb for Python 2.6 on Win32Technical Bardhttp://stackoverflow.com/users/405292008-11-25T06:14:20Z2009-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#3173320Answer by Bill Karwin for Problem compiling MySQLdb for Python 2.6 on Win32Bill Karwinhttp://stackoverflow.com/users/208602008-11-25T13:35:16Z2008-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#3177161Answer by Rafał Dowgird for Problem compiling MySQLdb for Python 2.6 on Win32Rafał Dowgirdhttp://stackoverflow.com/users/121662008-11-25T15:29:51Z2008-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#3190078Answer by Technical Bard for Problem compiling MySQLdb for Python 2.6 on Win32Technical Bardhttp://stackoverflow.com/users/405292008-11-25T21:51:20Z2009-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#11371511Answer by Dave Everitt for Problem compiling MySQLdb for Python 2.6 on Win32Dave Everitthttp://stackoverflow.com/users/1230332009-07-16T12:17:26Z2009-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#16659550Answer by Matt for Problem compiling MySQLdb for Python 2.6 on Win32Matthttp://stackoverflow.com/users/1836902009-11-03T08:28:38Z2009-11-03T08:28:38Z<p>Thanks Technical Bard!</p>
http://stackoverflow.com/questions/316484/problem-compiling-mysqldb-for-python-2-6-on-win32/1791371#17913710Answer by Morag for Problem compiling MySQLdb for Python 2.6 on Win32Moraghttp://stackoverflow.com/users/2179572009-11-24T16:51:00Z2009-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>