Python virutalenv 问题,尝试了 --no-site-packages 并得到了这个
virtualenv --no-site-packages foobar
New python executable in foobar/bin/python
Installing setuptools............done.
这里发生了什么?
lsvirtualenv
什么也不返回。
virtualenv --no-site-packages foobar
New python executable in foobar/bin/python
Installing setuptools............done.
What happened here?
lsvirtualenv
returns nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
virtualenv 和 virtualenvwrapper 之间有区别。
virtualenvwrapper 函数不会看到由
virtualenv --no-site-packages foobar
创建的环境,例如lsvirtualenv
。如果您想发挥 virtualenvwrapper 的无限威力,请按照这些说明进行操作并创建由
mkvirtualenv --no-site-packages foobar
创建的新环境There is a difference between virtualenv and virtualenvwrapper.
An env created by
virtualenv --no-site-packages foobar
will not be seen by the virtualenvwrapper functions, such aslsvirtualenv
.If you want to tap the unbridled power of the virtualenvwrapper, follow these instructions and create a new env by
mkvirtualenv --no-site-packages foobar