-
-
Notifications
You must be signed in to change notification settings - Fork 407
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
Prefer virtualenv over venv #392
Comments
Virtualenv is already preferred if it's installed for the active Python version or if pyenv-virtualenv/bin/pyenv-virtualenv Lines 158 to 165 in 6742d0e
|
I guess there could be an option envvar added to prefer Virtualenv even if Venv is present. That's because the current logic is that there's no need for Virtualenv if Venv can do the job, too -- but as per OP, there may be reasons to prefer Virtualenv regardless. |
FWIW with EDIT: maybe I'm using it incorrectly?
|
virtualenv includes seed packages (pip, setuptools, wheel) so creating virtualenvs with those already included is much faster than using venv and then installing them with pip. There should at least be an option to prefer virtualenv even if venv is available.
The text was updated successfully, but these errors were encountered: