You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempt to create a virtualenv using the bootstrap script generate in step 1 as follows: python bootstrap.py ./ENV --never-download --extra-search-dir python_packages/
The install_pip function in the generated bootstrap file will incorrectly pick the other package that begins with "pip-", and treat it as the real pip package to install. Because of this, the real pip is never installed into the virtualenv, and thus the command is unavailable for use.
The regex for finding the package should be more specific, or it should run some sort of test to determine which package is the real pip.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Just add a comment if you want to keep it open. Thank you for your contributions.
Steps to reproduce:
virtualenv.create_bootstrap_script()
python bootstrap.py ./ENV --never-download --extra-search-dir python_packages/
The
install_pip
function in the generated bootstrap file will incorrectly pick the other package that begins with "pip-", and treat it as the real pip package to install. Because of this, the real pip is never installed into the virtualenv, and thus the command is unavailable for use.The regex for finding the package should be more specific, or it should run some sort of test to determine which package is the real pip.
The text was updated successfully, but these errors were encountered: