Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No option to skip installing setuptools/distribute altogether. #13

Closed
vbabiy opened this issue Mar 14, 2011 · 3 comments
Closed

No option to skip installing setuptools/distribute altogether. #13

vbabiy opened this issue Mar 14, 2011 · 3 comments
Labels

Comments

@vbabiy
Copy link

vbabiy commented Mar 14, 2011

It would be nice to skip both; instead I ended up with this hack when I wanted a specific version of setuptools in a virtualenv but had distribute installed globablly:

#!/bin/sh

SETUPTOOLS=specific-setuptools-version.egg

/path/to/virtualenv/bin/pip uninstall distribute

/path/to/virtualenv/bin/python -c "import sys,os; sys.path.insert(0,os.path.abspath('$SETUPTOOLS')); from setuptools.command.easy_install import bootstrap; sys.exit(bootstrap())"

What would have been ideal in my situation would have been options to skip installation of setuptools; and an option that took various eggs to pre-install instead?


@vbabiy
Copy link
Author

vbabiy commented Mar 14, 2011

Issue #20 was marked as a duplicate of this issue.

option-to


Original Comment By: Jannis Leidel

@vbabiy
Copy link
Author

vbabiy commented Mar 14, 2011

Is there any support for providing an option to omit setuptools/distribute? If
there is I would like to take a shot at a patch.


Original Comment By: Kelsey Hightower

@gaborbernat
Copy link
Contributor

@rtd-helper rtd-helper bot mentioned this issue Oct 16, 2019
@pypa pypa locked and limited conversation to collaborators Jan 14, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants