<?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: Fixing the Leopard install of Python, and virtualenv for the win.</title>
	<atom:link href="http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/feed/" rel="self" type="application/rss+xml" />
	<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/</link>
	<description>python, programming and other things</description>
	<lastBuildDate>Fri, 23 Jul 2010 01:40:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Ed</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-139229</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Wed, 19 Dec 2007 06:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-139229</guid>
		<description>not sure that last comment made sense, but i&#039;m sure you know what i mean :)</description>
		<content:encoded><![CDATA[<p>not sure that last comment made sense, but i&#39;m sure you know what i mean :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-139228</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Wed, 19 Dec 2007 06:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-139228</guid>
		<description>i may be mistaken but doesn&#039;t the sys.path.append method make the system look in the system packages folder first rather than the environments packages first? (ie latest mentioned path first)&lt;br&gt;therefore if you add that path it&#039;ll use any system installed version before it uses your versions?</description>
		<content:encoded><![CDATA[<p>i may be mistaken but doesn&#39;t the sys.path.append method make the system look in the system packages folder first rather than the environments packages first? (ie latest mentioned path first)<br />therefore if you add that path it&#39;ll use any system installed version before it uses your versions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61895</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Wed, 19 Dec 2007 01:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61895</guid>
		<description>not sure that last comment made sense, but i&#039;m sure you know what i mean :)</description>
		<content:encoded><![CDATA[<p>not sure that last comment made sense, but i&#39;m sure you know what i mean :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61894</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Wed, 19 Dec 2007 01:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61894</guid>
		<description>i may be mistaken but doesn&#039;t the sys.path.append method make the system look in the system packages folder first rather than the environments packages first? (ie latest mentioned path first)&lt;br&gt;therefore if you add that path it&#039;ll use any system installed version before it uses your versions?</description>
		<content:encoded><![CDATA[<p>i may be mistaken but doesn&#39;t the sys.path.append method make the system look in the system packages folder first rather than the environments packages first? (ie latest mentioned path first)<br />therefore if you add that path it&#39;ll use any system installed version before it uses your versions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jnoller</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61893</link>
		<dc:creator>jnoller</dc:creator>
		<pubDate>Tue, 18 Dec 2007 19:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61893</guid>
		<description>I see the problem. It&#039;s an easy fix, virtualenv.py is not pulling the pyObjc stuff into the sys.path, which I did not notice.&lt;br&gt;&lt;br&gt;&gt;&gt;&gt; sys.path.append(&#039;/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/PyObjC&#039;)&lt;br&gt;&gt;&gt;&gt; import WebKit&lt;br&gt;&gt;&gt;&gt; &lt;br&gt;&lt;br&gt;Fixes it, I am going to poke at the virtualenv source to see if I can fix it.</description>
		<content:encoded><![CDATA[<p>I see the problem. It&#39;s an easy fix, virtualenv.py is not pulling the pyObjc stuff into the sys.path, which I did not notice.</p>
<p>&gt;&gt;&gt; sys.path.append(&#39;/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/PyObjC&#39;)<br />&gt;&gt;&gt; import WebKit<br />&gt;&gt;&gt; </p>
<p>Fixes it, I am going to poke at the virtualenv source to see if I can fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jnoller</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61892</link>
		<dc:creator>jnoller</dc:creator>
		<pubDate>Tue, 18 Dec 2007 19:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61892</guid>
		<description>I think I see what you mean:&lt;br&gt;&lt;br&gt;(default)woot:python_vms jesse$ python&lt;br&gt;imporPython 2.5.1 (r251:54863, Oct  5 2007, 21:08:09) &lt;br&gt;[GCC 4.0.1 (Apple Inc. build 5465)] on darwin&lt;br&gt;Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.&lt;br&gt;&gt;&gt;&gt; import WebKit&lt;br&gt;Traceback (most recent call last):&lt;br&gt;  File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;&lt;br&gt;ImportError: No module named WebKit&lt;br&gt;&gt;&gt;&gt; ^D&lt;br&gt;(default)woot:python_vms jesse$ de&lt;br&gt;deactivate  declare     defaults    desdp       dev_mkdb    &lt;br&gt;(default)woot:python_vms jesse$ deactivate &lt;br&gt;woot:python_vms jesse$ python&lt;br&gt;Python 2.5.1 (r251:54863, Oct  5 2007, 21:08:09) &lt;br&gt;[GCC 4.0.1 (Apple Inc. build 5465)] on darwin&lt;br&gt;Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.&lt;br&gt;&gt;&gt;&gt; import WebKit&lt;br&gt;&gt;&gt;&gt; ^D&lt;br&gt;woot:python_vms jesse$ &lt;br&gt;&lt;br&gt;I am going to dig into this more</description>
		<content:encoded><![CDATA[<p>I think I see what you mean:</p>
<p>(default)woot:python_vms jesse$ python<br />imporPython 2.5.1 (r251:54863, Oct  5 2007, 21:08:09) <br />[GCC 4.0.1 (Apple Inc. build 5465)] on darwin<br />Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br />&gt;&gt;&gt; import WebKit<br />Traceback (most recent call last):<br />  File &#8220;&lt;stdin&gt;&#8221;, line 1, in &lt;module&gt;<br />ImportError: No module named WebKit<br />&gt;&gt;&gt; ^D<br />(default)woot:python_vms jesse$ de<br />deactivate  declare     defaults    desdp       dev_mkdb    <br />(default)woot:python_vms jesse$ deactivate <br />woot:python_vms jesse$ python<br />Python 2.5.1 (r251:54863, Oct  5 2007, 21:08:09) <br />[GCC 4.0.1 (Apple Inc. build 5465)] on darwin<br />Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br />&gt;&gt;&gt; import WebKit<br />&gt;&gt;&gt; ^D<br />woot:python_vms jesse$ </p>
<p>I am going to dig into this more</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61891</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Tue, 18 Dec 2007 16:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61891</guid>
		<description>Hi, I don&#039;t want to be another one of those people who post help requests in blog comments but I was wondering how you got virtualenv working on Leopard?&lt;br&gt;Did it &quot;Just Work&quot;?&lt;br&gt;&lt;br&gt;I&#039;ve tried creating environments with both version 0.9.2 and from SVN with the clean python install from Leopard and none of my environments are references the location of the globally installed packages. I just get absolutely clean environments every time without the PyObjC stuff!&lt;br&gt;&lt;br&gt;I&#039;m quite new at this ;) do you have any ideas?&lt;br&gt;thx</description>
		<content:encoded><![CDATA[<p>Hi, I don&#39;t want to be another one of those people who post help requests in blog comments but I was wondering how you got virtualenv working on Leopard?<br />Did it &#8220;Just Work&#8221;?</p>
<p>I&#39;ve tried creating environments with both version 0.9.2 and from SVN with the clean python install from Leopard and none of my environments are references the location of the globally installed packages. I just get absolutely clean environments every time without the PyObjC stuff!</p>
<p>I&#39;m quite new at this ;) do you have any ideas?<br />thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jnoller</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61890</link>
		<dc:creator>jnoller</dc:creator>
		<pubDate>Mon, 17 Dec 2007 11:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61890</guid>
		<description>Using bash functions in your profile allows for tab completion on the command too. I use a lot of one liners to call into python code snippets I use a lot, ala:&lt;br&gt;&lt;br&gt;magic () { python -c &quot;import foo; foo&quot;; }</description>
		<content:encoded><![CDATA[<p>Using bash functions in your profile allows for tab completion on the command too. I use a lot of one liners to call into python code snippets I use a lot, ala:</p>
<p>magic () { python -c &#8220;import foo; foo&#8221;; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Hellmann</title>
		<link>http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/comment-page-1/#comment-61889</link>
		<dc:creator>Doug Hellmann</dc:creator>
		<pubDate>Mon, 17 Dec 2007 05:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://jessenoller.com/2007/12/16/fixing-the-leopard-install-of-python-and-virtualenv-for-the-win/#comment-61889</guid>
		<description>I&#039;ve been loving virtualenv, and your sandbox switching scripts sound like an improvement over typing the long paths out by hand each time I want to change my active environment.</description>
		<content:encoded><![CDATA[<p>I&#39;ve been loving virtualenv, and your sandbox switching scripts sound like an improvement over typing the long paths out by hand each time I want to change my active environment.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
