Hi <br>I think there is a mismatch on the way easy_install works for python2.5 here is how to reproduce.<br><br>elpargo@notebook:~/code/python$ /usr/bin/python2.5 workingenv.py tgpy25<br>...<br>elpargo@notebook:~/code/python$ source tgpy25/bin/activate 
<br><br>(tgpy25)elpargo@notebook:~/code/python$ easy_install<br>Traceback (most recent call last):<br>&nbsp; File &quot;/home/elpargo/code/python/tgpy25/bin/easy_install&quot;, line 5, in &lt;module&gt;<br>&nbsp;&nbsp;&nbsp; import setuptools
<br>&nbsp; File &quot;/home/elpargo/code/python/tgpy25/lib/python2.5/setuptools/__init__.py&quot;, line 13, in &lt;module&gt;<br>&nbsp;&nbsp;&nbsp; execfile(os.path.join(setuptools_path, &#39;__init__.py&#39;))<br>IOError: [Errno 20] Not a directory: &#39;/home/elpargo/code/python/tgpy25/lib/python2.5/setuptools-
0.6c5-py2.5.egg/setuptools/__init__.py&#39;<br><br>now this is true since workingenv is leaving the file as an egg <br><br>(tgpy25)elpargo@notebook:~/code/python$ cd tgpy25/lib/python2.5/setuptools-0.6c5-py2.5.egg<br>bash: cd: tgpy25/lib/python2.5/setuptools-
0.6c5-py2.5.egg: Not a directory<br><br>but then there is.<br><br>(tgpy25)elpargo@notebook:~/code/python/tgpy25/lib/python2.5/setuptools$ ls<br>__init__.py&nbsp; __init__.pyc<br><br>so my confusion here is if the problem because workingenv is using zipSafe on setuptools, or is easy_install looking at the wrong path?
<br>