<?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: Easily install all Python versions under Linux and OSX using collective.buildout.python</title>
	<atom:link href="http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/</link>
	<description>Freedom delivered.</description>
	<lastBuildDate>Mon, 19 Sep 2011 19:02:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Leonardo J. Caballero G.</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-4030</link>
		<dc:creator>Leonardo J. Caballero G.</dc:creator>
		<pubDate>Wed, 19 Jan 2011 20:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-4030</guid>
		<description>Thanks Mikko for me it worked very well on my Debian Lenny ;)</description>
		<content:encoded><![CDATA[<p>Thanks Mikko for me it worked very well on my Debian Lenny <img src='http://blog.mfabrik.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikko Ohtamaa</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3671</link>
		<dc:creator>Mikko Ohtamaa</dc:creator>
		<pubDate>Mon, 04 Oct 2010 06:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3671</guid>
		<description>try run bin/buildout -vvv 

Also the exception traceaback above that line is important.

The error message you pasted tells &quot;error happened&quot; but not &quot;which error happened&quot;</description>
		<content:encoded><![CDATA[<p>try run bin/buildout -vvv </p>
<p>Also the exception traceaback above that line is important.</p>
<p>The error message you pasted tells &#8220;error happened&#8221; but not &#8220;which error happened&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3669</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 03 Oct 2010 18:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3669</guid>
		<description>Everytime i try to run bin/buildout i keep getting.

An internal error occured due to a bug in either zc.buildout or in a
recipe being used:

Any clue why this happens?</description>
		<content:encoded><![CDATA[<p>Everytime i try to run bin/buildout i keep getting.</p>
<p>An internal error occured due to a bug in either zc.buildout or in a<br />
recipe being used:</p>
<p>Any clue why this happens?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kiorky</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3526</link>
		<dc:creator>kiorky</dc:creator>
		<pubDate>Wed, 01 Sep 2010 19:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3526</guid>
		<description>You can use -rpath to free you from using ld_library_path at runtime.
See:
- http://en.wikipedia.org/wiki/Rpath_%28linking%29
- http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

Basicly if you have something like this:
- /bar/include/foo.h
- /bar/lib/liba.so

And your target installation path is &quot;/foo&quot;

Do something like that:
export CFLAGS=&quot;$CFLAGS -I/bar/include&quot;
export LDFLAGS=&quot;$LDFKAGS -Wl,-rpath -Wl,/foo -Wl,-rpath -Wl,/bar -L/bar&quot;

If you want to embed that with buildout, you can have a look to minitage.recipe.cmmi &amp; minitage.recipe.common.</description>
		<content:encoded><![CDATA[<p>You can use -rpath to free you from using ld_library_path at runtime.<br />
See:<br />
- <a href="http://en.wikipedia.org/wiki/Rpath_%28linking%29" rel="nofollow">http://en.wikipedia.org/wiki/Rpath_%28linking%29</a><br />
- <a href="http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html" rel="nofollow">http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html</a></p>
<p>Basicly if you have something like this:<br />
- /bar/include/foo.h<br />
- /bar/lib/liba.so</p>
<p>And your target installation path is &#8220;/foo&#8221;</p>
<p>Do something like that:<br />
export CFLAGS=&#8221;$CFLAGS -I/bar/include&#8221;<br />
export LDFLAGS=&#8221;$LDFKAGS -Wl,-rpath -Wl,/foo -Wl,-rpath -Wl,/bar -L/bar&#8221;</p>
<p>If you want to embed that with buildout, you can have a look to minitage.recipe.cmmi &amp; minitage.recipe.common.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikko Ohtamaa</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3523</link>
		<dc:creator>Mikko Ohtamaa</dc:creator>
		<pubDate>Wed, 01 Sep 2010 11:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3523</guid>
		<description>Hi,

Do you know any way to set LD_LIBRARY_PATH during the compilation time? So that buildout would work without changing your system or shell settings?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Do you know any way to set LD_LIBRARY_PATH during the compilation time? So that buildout would work without changing your system or shell settings?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: higkoo</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3521</link>
		<dc:creator>higkoo</dc:creator>
		<pubDate>Wed, 01 Sep 2010 02:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3521</guid>
		<description>Just Do This:
 echo &#039;/usr/local/lib&#039; &gt;&gt; /etc/ld.so.conf</description>
		<content:encoded><![CDATA[<p>Just Do This:<br />
 echo &#8216;/usr/local/lib&#8217; &gt;&gt; /etc/ld.so.conf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yuri</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3324</link>
		<dc:creator>Yuri</dc:creator>
		<pubDate>Wed, 04 Aug 2010 13:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3324</guid>
		<description>~/PYTHON_VIRTUALENV/python# find . &#124; grep libjpeg.so
./python-2.4/lib/libjpeg.so.8.0.2
./python-2.4/lib/libjpeg.so.8
./python-2.4/lib/libjpeg.so
./python-2.5/lib/libjpeg.so.8.0.2
./python-2.5/lib/libjpeg.so.8
./python-2.5/lib/libjpeg.so
./python-2.6/lib/libjpeg.so.8.0.2
./python-2.6/lib/libjpeg.so.8
./python-2.6/lib/libjpeg.so
./parts/opt/lib/libjpeg.so.8.0.2
./parts/opt/lib/libjpeg.so.8
./parts/opt/lib/libjpeg.so

so they are there.. now pypi is down and I cannot try any more :(</description>
		<content:encoded><![CDATA[<p>~/PYTHON_VIRTUALENV/python# find . | grep libjpeg.so<br />
./python-2.4/lib/libjpeg.so.8.0.2<br />
./python-2.4/lib/libjpeg.so.8<br />
./python-2.4/lib/libjpeg.so<br />
./python-2.5/lib/libjpeg.so.8.0.2<br />
./python-2.5/lib/libjpeg.so.8<br />
./python-2.5/lib/libjpeg.so<br />
./python-2.6/lib/libjpeg.so.8.0.2<br />
./python-2.6/lib/libjpeg.so.8<br />
./python-2.6/lib/libjpeg.so<br />
./parts/opt/lib/libjpeg.so.8.0.2<br />
./parts/opt/lib/libjpeg.so.8<br />
./parts/opt/lib/libjpeg.so</p>
<p>so they are there.. now pypi is down and I cannot try any more <img src='http://blog.mfabrik.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikko Ohtamaa</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3323</link>
		<dc:creator>Mikko Ohtamaa</dc:creator>
		<pubDate>Wed, 04 Aug 2010 13:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3323</guid>
		<description>http://plone.293351.n2.nabble.com/Python-buildout-on-Ubuntu-10-04-import-imaging-failing-due-to-libjpeg-td5104024.html</description>
		<content:encoded><![CDATA[<p><a href="http://plone.293351.n2.nabble.com/Python-buildout-on-Ubuntu-10-04-import-imaging-failing-due-to-libjpeg-td5104024.html" rel="nofollow">http://plone.293351.n2.nabble.com/Python-buildout-on-Ubuntu-10-04-import-imaging-failing-due-to-libjpeg-td5104024.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yuri</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3322</link>
		<dc:creator>Yuri</dc:creator>
		<pubDate>Wed, 04 Aug 2010 13:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3322</guid>
		<description>Thanks!

I get:

~/PYTHON_VIRTUALENV/python/python-2.4# ./bin/python
Python 2.4.6 (#1, Aug  4 2010, 14:42:18) 
[GCC 4.3.2] on linux2
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
&gt;&gt;&gt; import PIL
&gt;&gt;&gt; import _imaging
Traceback (most recent call last):
  File &quot;&quot;, line 1, in ?
ImportError: libjpeg.so.8: cannot open shared object file: No such file or directory
&gt;&gt;&gt; 

so I think something went wrong.</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>I get:</p>
<p>~/PYTHON_VIRTUALENV/python/python-2.4# ./bin/python<br />
Python 2.4.6 (#1, Aug  4 2010, 14:42:18)<br />
[GCC 4.3.2] on linux2<br />
Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br />
&gt;&gt;&gt; import PIL<br />
&gt;&gt;&gt; import _imaging<br />
Traceback (most recent call last):<br />
  File &#8220;&#8221;, line 1, in ?<br />
ImportError: libjpeg.so.8: cannot open shared object file: No such file or directory<br />
&gt;&gt;&gt; </p>
<p>so I think something went wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikko Ohtamaa</title>
		<link>http://blog.mfabrik.com/2010/07/16/easily-install-all-python-versions-under-linux-and-osx-using-collective-buildout-python/comment-page-1/#comment-3321</link>
		<dc:creator>Mikko Ohtamaa</dc:creator>
		<pubDate>Wed, 04 Aug 2010 12:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mfabrik.com/?p=576#comment-3321</guid>
		<description>http://pypi.python.org/pypi/z3c.recipe.staticlxml/0.7.1</description>
		<content:encoded><![CDATA[<p><a href="http://pypi.python.org/pypi/z3c.recipe.staticlxml/0.7.1" rel="nofollow">http://pypi.python.org/pypi/z3c.recipe.staticlxml/0.7.1</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

