Can't install virtualenvwrapper on OSX 10.11 El Capitan

坚强是说给别人听的谎言 提交于 2019-11-27 18:56:06

You can manually install the dependencies that don't exist on a stock 10.11 install, then install the other packages with --no-deps to ignore the dependencies. That way it will skip six (and argparse which is also already installed). This works on my 10.11 beta 6 install:

sudo pip install pbr
sudo pip install --no-deps stevedore
sudo pip install --no-deps virtualenvwrapper

And no need to disable rootless.

Tito Garrido
sudo pip install virtualenvwrapper --ignore-installed six

Also works

The command successfully ran for me but when I go to /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages But virtualenvwrapper.sh is not found. I believe if virtualenvwrapper.sh is not found, we cannot run virtual env. Any thoughts?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!