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.

classification
Title: Virtualenv 16.2.0 Error Finding Pip
Type: behavior Stage: resolved
Components: Installation Versions: Python 2.7
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: NazarTrilisky, zach.ware
Priority: normal Keywords:

Created on 2019-01-18 16:15 by NazarTrilisky, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg333986 - (view) Author: Nazar (NazarTrilisky) Date: 2019-01-18 16:15
Issue resolved by downgrading virtualenv from 16.2.0 to 15.1.0.

$ virtualenv -p python my_venv
Already using interpreter /usr/bin/python
New python executable in /home/your_user_name/my_venv/bin/python
Cannot find a wheel for setuptools
Cannot find a wheel for pip
Installing setuptools, pip, wheel...

  Complete output from command /home/your_user_name/my_venv/bin/python - setuptools pip wheel:
  Traceback (most recent call last):
  File "<stdin>", line 11, in <module>
ImportError: No module named pip
----------------------------------------
...Installing setuptools, pip, wheel...done.
Traceback (most recent call last):
  File "/usr/bin/virtualenv", line 11, in <module>
    load_entry_point('virtualenv==16.2.0', 'console_scripts', 'virtualenv')()
  File "build/bdist.cygwin-<version>-x86_64/egg/virtualenv.py", line 768, in main
  File "build/bdist.cygwin-<version>-x86_64/egg/virtualenv.py", line 1030, in create_environment
  File "build/bdist.cygwin-<version>-x86_64/egg/virtualenv.py", line 983, in install_wheel
  File "build/bdist.cygwin-<version>-x86_64/egg/virtualenv.py", line 861, in call_subprocess
OSError: Command /home/your_user_name/my_venv/bin/python - setuptools pip wheel failed with error code 1
msg333996 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2019-01-18 17:28
virtualenv is not part of the Python standard library; please open an issue on the virtualenv bug tracker (https://github.com/pypa/virtualenv/issues).
History
Date User Action Args
2022-04-11 14:59:10adminsetgithub: 79957
2019-01-18 17:28:26zach.waresetstatus: open -> closed

nosy: + zach.ware
messages: + msg333996

resolution: third party
stage: resolved
2019-01-18 16:15:36NazarTriliskycreate