<?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: Distributed Python Development and Deployment with Git and Virtualenv</title>
	<atom:link href="http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/feed/" rel="self" type="application/rss+xml" />
	<link>http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/</link>
	<description>IT tips, tricks and rants from the trenches</description>
	<lastBuildDate>Wed, 30 Dec 2009 22:08:14 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jim</title>
		<link>http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/comment-page-1/#comment-165</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Fri, 04 Dec 2009 21:57:31 +0000</pubDate>
		<guid isPermaLink="false">http://ihopesolution.com/?p=4#comment-165</guid>
		<description>shouldn&#039;t 

$ pip -E projectname -r requirements.txt

be

$ pip install -E projectname -r requirements.txt</description>
		<content:encoded><![CDATA[<p>shouldn&#8217;t </p>
<p>$ pip -E projectname -r requirements.txt</p>
<p>be</p>
<p>$ pip install -E projectname -r requirements.txt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curt</title>
		<link>http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/comment-page-1/#comment-8</link>
		<dc:creator>Curt</dc:creator>
		<pubDate>Wed, 08 Jul 2009 05:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://ihopesolution.com/?p=4#comment-8</guid>
		<description>Patrick,

It gets even fancier, read up on pybundles.  (Using the requirements file above):

pip bundle projectname.bundle -r requirements.txt

This zips up all the libraries, you can then move the bundle around without needing to download and install the libraries.

pip is super sexy.</description>
		<content:encoded><![CDATA[<p>Patrick,</p>
<p>It gets even fancier, read up on pybundles.  (Using the requirements file above):</p>
<p>pip bundle projectname.bundle -r requirements.txt</p>
<p>This zips up all the libraries, you can then move the bundle around without needing to download and install the libraries.</p>
<p>pip is super sexy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pfhawkins</title>
		<link>http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/comment-page-1/#comment-7</link>
		<dc:creator>pfhawkins</dc:creator>
		<pubDate>Tue, 07 Jul 2009 19:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://ihopesolution.com/?p=4#comment-7</guid>
		<description>Curt,

The reason I&#039;m doing it this way is that I only recently started looking into pip, and haven&#039;t delved into the requirements files yet. :-)

$ pip -E projectname -r requirements.txt

Now I need to question my reading comprehension skills, since I did not realize that one can create a virtualenv from within pip. Superlatives fail me.</description>
		<content:encoded><![CDATA[<p>Curt,</p>
<p>The reason I&#8217;m doing it this way is that I only recently started looking into pip, and haven&#8217;t delved into the requirements files yet. <img src='http://ihopesolution.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>$ pip -E projectname -r requirements.txt</p>
<p>Now I need to question my reading comprehension skills, since I did not realize that one can create a virtualenv from within pip. Superlatives fail me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yrk</title>
		<link>http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/comment-page-1/#comment-6</link>
		<dc:creator>yrk</dc:creator>
		<pubDate>Tue, 07 Jul 2009 18:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://ihopesolution.com/?p=4#comment-6</guid>
		<description>Got here from planet.emacsen.org and will be following the blog. Good luck!</description>
		<content:encoded><![CDATA[<p>Got here from planet.emacsen.org and will be following the blog. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curt</title>
		<link>http://ihopesolution.com/2009/07/distributed-python-development-git-virtualenv/comment-page-1/#comment-5</link>
		<dc:creator>Curt</dc:creator>
		<pubDate>Tue, 07 Jul 2009 13:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://ihopesolution.com/?p=4#comment-5</guid>
		<description>I am curious why you are keeping the virtualenv in version control. With pip you can use a requirements file in your project which will manage all of that for you so you aren&#039;t copying binaries, egg files, etc.

Using your example above:

$ mkdir projectname
$ cd $_
$ git init
$ $EDITOR requirements.txt
#--- requirements.txt
Pygments
-e svn+http://code.djangoproject.com/svn/django/trunk/#egg=Django
#---
$ git commit -a -m &quot;Init requirements file for projectname&quot;
$ pip -E projectname -r requirements.txt

That last pip command creates a virtualenv with the libraries you needed installed via the requirements file. Makes it really easy to just manage your project and let pip do the heavy lifting.</description>
		<content:encoded><![CDATA[<p>I am curious why you are keeping the virtualenv in version control. With pip you can use a requirements file in your project which will manage all of that for you so you aren&#8217;t copying binaries, egg files, etc.</p>
<p>Using your example above:</p>
<p>$ mkdir projectname<br />
$ cd $_<br />
$ git init<br />
$ $EDITOR requirements.txt<br />
#&#8212; requirements.txt<br />
Pygments<br />
-e svn+http://code.djangoproject.com/svn/django/trunk/#egg=Django<br />
#&#8212;<br />
$ git commit -a -m &#8220;Init requirements file for projectname&#8221;<br />
$ pip -E projectname -r requirements.txt</p>
<p>That last pip command creates a virtualenv with the libraries you needed installed via the requirements file. Makes it really easy to just manage your project and let pip do the heavy lifting.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
