<?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: A small introduction to Python Eggs</title>
	<atom:link href="http://mrtopf.de/blog/python_zope/a-small-introduction-to-python-eggs/feed/" rel="self" type="application/rss+xml" />
	<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/</link>
	<description>Geschreibsel von Christian Scholz</description>
	<lastBuildDate>Mon, 23 Jan 2012 08:52:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Python 101: Setting up Python on Windows &#171; The Mouse Vs. The Python</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2936</link>
		<dc:creator>Python 101: Setting up Python on Windows &#171; The Mouse Vs. The Python</dc:creator>
		<pubDate>Thu, 24 Nov 2011 15:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2936</guid>
		<description>[...] easy_install was that it was the defacto standard for install Python Eggs, which you can read about here or here. Now you can use pip or distribute to do the same thing. All three can also install [...]</description>
		<content:encoded><![CDATA[<p>[...] easy_install was that it was the defacto standard for install Python Eggs, which you can read about here or here. Now you can use pip or distribute to do the same thing. All three can also install [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Evans</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2819</link>
		<dc:creator>Thomas Evans</dc:creator>
		<pubDate>Wed, 16 Nov 2011 09:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2819</guid>
		<description>OK, my next question is, what does &quot;as root&quot; mean.

When I saved the code and ran it as a module from IDLE, I got the following message:

Processing setuptools-0.6c11-py2.6.egg
Copying setuptools-0.6c11-py2.6.egg to /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages
Adding setuptools 0.6c11 to easy-install.pth file
Installing easy_install script to /Library/Frameworks/Python.framework/Versions/2.6/bin
Installing easy_install-2.6 script to /Library/Frameworks/Python.framework/Versions/2.6/bin

Installed /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg
Processing dependencies for setuptools==0.6c11
Finished processing dependencies for setuptools==0.6c11

This seemed promising. However, trying to run &quot;easy_install NetworkX&quot; or &quot;easy_install networkx-1.5-py2.6.egg&quot; just returns an invalid syntax error message. I&#039;m guessing that my lack of understanding of running script &quot;as root&quot; is the issue.

Thanks again.

Thomas</description>
		<content:encoded><![CDATA[<p>OK, my next question is, what does &#8220;as root&#8221; mean.</p>
<p>When I saved the code and ran it as a module from IDLE, I got the following message:</p>
<p>Processing setuptools-0.6c11-py2.6.egg<br />
Copying setuptools-0.6c11-py2.6.egg to /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages<br />
Adding setuptools 0.6c11 to easy-install.pth file<br />
Installing easy_install script to /Library/Frameworks/Python.framework/Versions/2.6/bin<br />
Installing easy_install-2.6 script to /Library/Frameworks/Python.framework/Versions/2.6/bin</p>
<p>Installed /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg<br />
Processing dependencies for setuptools==0.6c11<br />
Finished processing dependencies for setuptools==0.6c11</p>
<p>This seemed promising. However, trying to run &#8220;easy_install NetworkX&#8221; or &#8220;easy_install networkx-1.5-py2.6.egg&#8221; just returns an invalid syntax error message. I&#8217;m guessing that my lack of understanding of running script &#8220;as root&#8221; is the issue.</p>
<p>Thanks again.</p>
<p>Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Evans</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2816</link>
		<dc:creator>Thomas Evans</dc:creator>
		<pubDate>Tue, 15 Nov 2011 14:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2816</guid>
		<description>Thank you</description>
		<content:encoded><![CDATA[<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Scholz</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2814</link>
		<dc:creator>Christian Scholz</dc:creator>
		<pubDate>Tue, 15 Nov 2011 13:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2814</guid>
		<description>Regarding ez_setup: You simply save it and running it via python ez_setup.py should install setuptools for your python installation. Today most linux based systems come with some package like python-setuptools already though so you might simply install this instead (maybe it is installed already). Make sure to run ez_setup.py as root though.

After that you have a new command &quot;easy_install&quot; available and if a package is on PyPI you can in many cases simply say 

easy_install NetworkX

(again as root in case you are not using a virtual python environment). I just did that and it worked. 

In this case it will search pypi for that package name, download and install it. It&#039;s not working with all packages but with quite a lot. If it does not work you have to download the package manually and follow installation instructions as usual (many times it&#039;s python setup.py install).

In case you have downloaded an .egg file you can install it as you wrote with easy_install somepackage.egg 

I hope this helps!</description>
		<content:encoded><![CDATA[<p>Regarding ez_setup: You simply save it and running it via python ez_setup.py should install setuptools for your python installation. Today most linux based systems come with some package like python-setuptools already though so you might simply install this instead (maybe it is installed already). Make sure to run ez_setup.py as root though.</p>
<p>After that you have a new command &#8220;easy_install&#8221; available and if a package is on PyPI you can in many cases simply say </p>
<p>easy_install NetworkX</p>
<p>(again as root in case you are not using a virtual python environment). I just did that and it worked. </p>
<p>In this case it will search pypi for that package name, download and install it. It&#8217;s not working with all packages but with quite a lot. If it does not work you have to download the package manually and follow installation instructions as usual (many times it&#8217;s python setup.py install).</p>
<p>In case you have downloaded an .egg file you can install it as you wrote with easy_install somepackage.egg </p>
<p>I hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Evans</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2813</link>
		<dc:creator>Thomas Evans</dc:creator>
		<pubDate>Tue, 15 Nov 2011 11:39:26 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2813</guid>
		<description>I am trying to install NetworkX, which I can download as a Python egg. Unfortunately, I don&#039;t understand what to do with this.

I have read this page and others and I can&#039;t make any sense of it, unfortunately.

Trying to download Easy Installer at this site:
http://peak.telecommunity.com/dist/ez_setup.py
I am thoroughly confused. That site is just a page of code. If I run it in Python, nothing seems to happen.

&quot;Once you have done this you can simply install an egg by calling: easy_install somepackage.egg&quot;

What does this mean? Do you just type &quot;easy_install somepackage.egg&quot; into Python and run it?

I have previously downloaded matplotlib and numpy etc with no problems, but this is causing me a lot of problems. Could you break down the instructions a bit further, please.

Thanks</description>
		<content:encoded><![CDATA[<p>I am trying to install NetworkX, which I can download as a Python egg. Unfortunately, I don&#8217;t understand what to do with this.</p>
<p>I have read this page and others and I can&#8217;t make any sense of it, unfortunately.</p>
<p>Trying to download Easy Installer at this site:<br />
<a href="http://peak.telecommunity.com/dist/ez_setup.py" rel="nofollow">http://peak.telecommunity.com/dist/ez_setup.py</a><br />
I am thoroughly confused. That site is just a page of code. If I run it in Python, nothing seems to happen.</p>
<p>&#8220;Once you have done this you can simply install an egg by calling: easy_install somepackage.egg&#8221;</p>
<p>What does this mean? Do you just type &#8220;easy_install somepackage.egg&#8221; into Python and run it?</p>
<p>I have previously downloaded matplotlib and numpy etc with no problems, but this is causing me a lot of problems. Could you break down the instructions a bit further, please.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Scholz</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2678</link>
		<dc:creator>Christian Scholz</dc:creator>
		<pubDate>Thu, 03 Nov 2011 14:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2678</guid>
		<description>thanks, fixed!</description>
		<content:encoded><![CDATA[<p>thanks, fixed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zvi Fer</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2674</link>
		<dc:creator>Zvi Fer</dc:creator>
		<pubDate>Tue, 01 Nov 2011 15:32:50 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2674</guid>
		<description>There is a typo...

in the second setup.py , 
instead  of 

     packages=[&#039;eventlet&#039;])

you should put:

     packages=[&#039;eventlet&#039;] ,</description>
		<content:encoded><![CDATA[<p>There is a typo&#8230;</p>
<p>in the second setup.py ,<br />
instead  of </p>
<p>     packages=['eventlet'])</p>
<p>you should put:</p>
<p>     packages=['eventlet'] ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: python</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2181</link>
		<dc:creator>python</dc:creator>
		<pubDate>Sat, 06 Aug 2011 10:36:32 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2181</guid>
		<description>[...] A small introduction to Python Eggs by by Christian Scholz [...]</description>
		<content:encoded><![CDATA[<p>[...] A small introduction to Python Eggs by by Christian Scholz [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Python: distribution systems world &#124; Supportex.net</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2179</link>
		<dc:creator>Python: distribution systems world &#124; Supportex.net</dc:creator>
		<pubDate>Fri, 05 Aug 2011 11:08:26 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2179</guid>
		<description>[...] A small introduction to Python Eggs by by Christian Scholz [...]</description>
		<content:encoded><![CDATA[<p>[...] A small introduction to Python Eggs by by Christian Scholz [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomm174</title>
		<link>http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/#comment-2172</link>
		<dc:creator>tomm174</dc:creator>
		<pubDate>Wed, 03 Aug 2011 21:06:33 +0000</pubDate>
		<guid isPermaLink="false">http://mrtopf.de/blog/vlog/a-small-introduction-to-python-eggs/#comment-2172</guid>
		<description>Nice article - Thanks.
One little correction: 
That would be dependEncies, not dependAncies throughout.
And this would be nitpicking</description>
		<content:encoded><![CDATA[<p>Nice article &#8211; Thanks.<br />
One little correction:<br />
That would be dependEncies, not dependAncies throughout.<br />
And this would be nitpicking</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Object Caching 501/524 objects using disk

Served from: mrtopf.de @ 2012-02-09 10:12:38 -->
