Python virutalenv 问题,尝试了 --no-site-packages 并得到了这个

发布于 2024-10-17 15:06:35 字数 215 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

断念 2024-10-24 15:06:35

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 as lsvirtualenv.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文