<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: MySQL and Python 2.6 on Windows, Redux</title>
	<atom:link href="http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/</link>
	<description>Things that interest me about rationality, science, and technology</description>
	<lastBuildDate>Thu, 29 Jul 2010 03:01:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: gilnyc</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33295</link>
		<dc:creator>gilnyc</dc:creator>
		<pubDate>Tue, 12 Jan 2010 04:26:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33295</guid>
		<description>So here&#039;s how I got it to work: Windows 7 has 2 Program File directories (one for 32 bit and one for 64 bit) and so not to confuse the Python installation I changed its install directory from the default (c:\python26) to the 32 bit location (c:\Program Files (x86)\python26). Python installed fine however the .exe files I found for MySQLdb failed to install (I tried this for both python 2.6 &amp; 2.5 with corresponding MySQLdb executables). Finally I reinstalled python in its default directory (c:\python26) and moved the MySQLdb executable to that directory and ran it from there. MySQLdb installed fine so one of my two changes fixed the problem. Confusing because the MySQLdb executable messages that it finds the python install in the registry yet can&#039;t adapt. 
Thanks for your help! Gil</description>
		<content:encoded><![CDATA[<p>So here&#8217;s how I got it to work: Windows 7 has 2 Program File directories (one for 32 bit and one for 64 bit) and so not to confuse the Python installation I changed its install directory from the default (c:\python26) to the 32 bit location (c:\Program Files (x86)\python26). Python installed fine however the .exe files I found for MySQLdb failed to install (I tried this for both python 2.6 &amp; 2.5 with corresponding MySQLdb executables). Finally I reinstalled python in its default directory (c:\python26) and moved the MySQLdb executable to that directory and ran it from there. MySQLdb installed fine so one of my two changes fixed the problem. Confusing because the MySQLdb executable messages that it finds the python install in the registry yet can&#8217;t adapt.<br />
Thanks for your help! Gil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33293</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Tue, 12 Jan 2010 01:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33293</guid>
		<description>@gilnyc:

MySQLdb doesn&#039;t require or benefit from having MySQL installed on your computer.  

To save data to a MySQL database, you of course have to have access to a MySQL server...whether that server is remote or local it does not matter.  I don&#039;t think having MySQL installed locally is a common scenario.

I dont know anything about a .exe file for Python 2.5 as I only provided a version for Python 2.6.  This leads me to believe you&#039;re using a version from one of the links people have provided in the comments.  I don&#039;t know anything about those other than the fact that I was never able to find a version that would install for me.  Which is the reason I compiled my own.

The one I provide in the original post works for me.</description>
		<content:encoded><![CDATA[<p>@gilnyc:</p>
<p>MySQLdb doesn&#8217;t require or benefit from having MySQL installed on your computer.  </p>
<p>To save data to a MySQL database, you of course have to have access to a MySQL server&#8230;whether that server is remote or local it does not matter.  I don&#8217;t think having MySQL installed locally is a common scenario.</p>
<p>I dont know anything about a .exe file for Python 2.5 as I only provided a version for Python 2.6.  This leads me to believe you&#8217;re using a version from one of the links people have provided in the comments.  I don&#8217;t know anything about those other than the fact that I was never able to find a version that would install for me.  Which is the reason I compiled my own.</p>
<p>The one I provide in the original post works for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gilnyc</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33291</link>
		<dc:creator>gilnyc</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33291</guid>
		<description>Dustin, 

are you saying that MySQLdb is self-contained in the sense that it has a DB like sql-lite? 

Or are you saying that you can install MySQLdb without having MySQL installed but then need to install MySQL to actually store any data?

In any case I&#039;ve tried to use the .exe files for both Python 2.5 and 2.6 to install MySQLdb and once they start installing the screen freezes then informs me that the program stopped. I&#039;m using Win 7 and I uninstalled MySQL.

Any ideas?
Thanks,
Gil</description>
		<content:encoded><![CDATA[<p>Dustin, </p>
<p>are you saying that MySQLdb is self-contained in the sense that it has a DB like sql-lite? </p>
<p>Or are you saying that you can install MySQLdb without having MySQL installed but then need to install MySQL to actually store any data?</p>
<p>In any case I&#8217;ve tried to use the .exe files for both Python 2.5 and 2.6 to install MySQLdb and once they start installing the screen freezes then informs me that the program stopped. I&#8217;m using Win 7 and I uninstalled MySQL.</p>
<p>Any ideas?<br />
Thanks,<br />
Gil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33285</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Sun, 10 Jan 2010 20:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33285</guid>
		<description>You don&#039;t need to install MySQL to use MySQLdb.  MySQLdb is completely self contained.

For example, I have the MySQLdb package I wrote about in the post installed on this PC, and I don&#039;t have MySQL installed at all.

The only place you need to have MySQL installed is on the server you&#039;re going to be querying with MySQLdb.</description>
		<content:encoded><![CDATA[<p>You don&#8217;t need to install MySQL to use MySQLdb.  MySQLdb is completely self contained.</p>
<p>For example, I have the MySQLdb package I wrote about in the post installed on this PC, and I don&#8217;t have MySQL installed at all.</p>
<p>The only place you need to have MySQL installed is on the server you&#8217;re going to be querying with MySQLdb.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gilnyc</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33284</link>
		<dc:creator>gilnyc</dc:creator>
		<pubDate>Sun, 10 Jan 2010 20:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33284</guid>
		<description>First, thanks to all trying to get this to work!

I&#039;m thoroughly confused though. I&#039;m using Windows 7 and I downloaded MySQL to its default suggested location (c:\program files(x86)\MySQL) and Python 26 to its corresponding x86 directory. I&#039;m assuming the 2 .msi files knew that they were 32bit versions. I then downloaded the file suggested here and ran it from its download location - the installer screen came up and recognized the Python26 installation but when I clicked &quot;Next&quot; to execute the install it froze then a pop-up let me know that it stopped. I tried this several times. Does it need the MySQL service running during this install? Any other thoughts?
Thanks!
Gil</description>
		<content:encoded><![CDATA[<p>First, thanks to all trying to get this to work!</p>
<p>I&#8217;m thoroughly confused though. I&#8217;m using Windows 7 and I downloaded MySQL to its default suggested location (c:\program files(x86)\MySQL) and Python 26 to its corresponding x86 directory. I&#8217;m assuming the 2 .msi files knew that they were 32bit versions. I then downloaded the file suggested here and ran it from its download location &#8211; the installer screen came up and recognized the Python26 installation but when I clicked &#8220;Next&#8221; to execute the install it froze then a pop-up let me know that it stopped. I tried this several times. Does it need the MySQL service running during this install? Any other thoughts?<br />
Thanks!<br />
Gil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmarble</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33017</link>
		<dc:creator>dmarble</dc:creator>
		<pubDate>Fri, 02 Oct 2009 17:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33017</guid>
		<description>Workaround: download one of these pre-compiled versions for Windows 64-bit or win32: http://www.codegood.com/archives/4

If you get the error that python version 2.6 is not found in the registry, just manually add the keys to create:

HKLM\Software\Python\PythonCore\2.6\InstallPath

and change the value of (Default) to &quot;C:\python26&quot; or your own 

Installation of the above files should work then.</description>
		<content:encoded><![CDATA[<p>Workaround: download one of these pre-compiled versions for Windows 64-bit or win32: <a href="http://www.codegood.com/archives/4" rel="nofollow">http://www.codegood.com/archives/4</a></p>
<p>If you get the error that python version 2.6 is not found in the registry, just manually add the keys to create:</p>
<p>HKLM\Software\Python\PythonCore\2.6\InstallPath</p>
<p>and change the value of (Default) to &#8220;C:\python26&#8243; or your own </p>
<p>Installation of the above files should work then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmarble</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-33016</link>
		<dc:creator>dmarble</dc:creator>
		<pubDate>Fri, 02 Oct 2009 17:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-33016</guid>
		<description>Hey, thanks for this posting!  I got this to work on my Windows 7 64-bit system, but only using python 32-bit.  It didn&#039;t work on another Win7 64-bit machine I have that&#039;s using python 64-bit.  Any clue as to a compile option for 64-bit?</description>
		<content:encoded><![CDATA[<p>Hey, thanks for this posting!  I got this to work on my Windows 7 64-bit system, but only using python 32-bit.  It didn&#8217;t work on another Win7 64-bit machine I have that&#8217;s using python 64-bit.  Any clue as to a compile option for 64-bit?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Contriving &#187; Using Python 2.6 + MySQL on Windows is nearly impossible</title>
		<link>http://blog.contriving.net/2009/09/18/mysql-and-python-2-6-on-windows-redux/comment-page-1/#comment-32985</link>
		<dc:creator>Contriving &#187; Using Python 2.6 + MySQL on Windows is nearly impossible</dc:creator>
		<pubDate>Sun, 20 Sep 2009 22:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.contriving.net/?p=441#comment-32985</guid>
		<description>[...] Update:  I made progress on this issue.  See my newer post here. [...]</description>
		<content:encoded><![CDATA[<p>[...] Update:  I made progress on this issue.  See my newer post here. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
