On Mon, Oct 22, 2012 at 3:57 PM, anatoly techtonik <[email protected]> wrote: > I can't install Sphinx in a Python 3.2 directory with distribute > 0.6.13 installed due to a bug in outdated distribute. Sphinx uses > distribute_setup.py and if no setuptools installed it fetches new > version where there is no such problem. The check is the following > code: > > try: > from setuptools import setup, find_packages > except ImportError: > import distribute_setup > distribute_setup.use_setuptools() > from setuptools import setup, find_packages > > What is the proper way to modify it to make distribute_setup.py > upgrade distribute if necessary? > -- > anatoly t.
You should just invoke a recent virtualenv on the environment. _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
