This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients docs@python, pas, ronaldoussoren
Date 2012-08-27.13:03:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346072600.41.0.166027236582.issue15790@psf.upfronthosting.co.za>
In-reply-to
Content
pyvenv won't install setuptools because setuptools is not a stdlib package. Having packaging would have been nice, but that library was not in a good enough shape for the 3.3 release.

I don't understand what you try to do in the second traceback. Installing distribute works fine though:

1) Create environment using pyvenv: $ pyenv myenv
2) Download distribute archive from PyPI
3) Extract this archive
4) Install: $ cd distribute-0.6.28; ../pyenv/bin/python setup.py install

If you have a setup.py file where you want to use the distribute package you can use distribute_setup, as described in <http://pypi.python.org/pypi/distribute/#distribute-setup-py>. I'm using this in my own packages and this works fine with pyvenv as well.
History
Date User Action Args
2012-08-27 13:03:20ronaldoussorensetrecipients: + ronaldoussoren, docs@python, pas
2012-08-27 13:03:20ronaldoussorensetmessageid: <1346072600.41.0.166027236582.issue15790@psf.upfronthosting.co.za>
2012-08-27 13:03:19ronaldoussorenlinkissue15790 messages
2012-08-27 13:03:19ronaldoussorencreate