python - Pip not able to find wheel -
i have virtual environment. since couple of days cannot run pip commands , getting error:
file "env/bin/pip", line 7, in <module> pip import main file "/env/lib/python2.7/site-packages/pip/__init__.py", line 15, in <module> pip.vcs import git, mercurial, subversion, bazaar # noqa file "/env/lib/python2.7/site-packages/pip/vcs/subversion.py", line 9, in <module> pip.index import link file "/env/lib/python2.7/site-packages/pip/index.py", line 30, in <module> pip.wheel import wheel, wheel_ext importerror: no module named wheel i have wheel in site-packages , installed earlier. how resolve this? cannot use pip commands.
your pip installation appears broken. not wheel project problem here, pip.wheel package (part of pip itself) fails import; looks /env/lib/python2.7/site-packages/pip/wheel.py either missing or has been corrupted somehow.
i'd reinstall pip @ point.
Comments
Post a Comment