在 Windows 上,我运行 python 程序时未使用 virtualenv

发布于 2024-12-14 16:08:35 字数 198 浏览 1 评论 0原文

我在 Windows 上安装了 virtualenv。

在 cmd 中,我运行 python 并查看 sys.path 并查看包含的 virtualenv 路径。

但是当我运行manage.py(对于django)时,我没有看到virtualenv路径, 所以 virtualenv 不能与 django 服务器一起使用。

为什么?

I have virtualenv installed on windows.

In cmd, i run python and look at sys.path and see the virtualenv path included.

but when i run manage.py (for django), I don't see the virtualenv path,
so virtualenv is not working with django server.

Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

楠木可依 2024-12-21 16:08:40

Virtualenv 修改 PATH 以包含具有正确设置的 Python。它是一个与Python系统完全独立的程序。

PATH 用于按名称查找程序:执行 PATH 中给定名称的第一个程序。

当您“运行文件”时,Windows 使用文件的扩展名来查找要运行的程序。它不会通过程序名称进行查找,因此不会检查 PATH。

解决方案是在 virtualenv 处于活动状态时从命令行 (python manage.py) 显式调用 Python。这样,Windows 将在 PATH 中搜索“python”的含义,并找到正确的路径。

Virtualenv modifies the PATH to include a Python with the correct setup. It's a completely separate program from the system Python.

The PATH is used to look up programs by name: the first program of a given name that's in the PATH gets executed.

When you “run a file”, Windows uses the extension of the file to look up a program to run. It doesn't look it up by the name of the program, and so doesn't check the PATH.

The solution is to explicitly invoke Python from the command line (python manage.py) while a virtualenv is active. This way, Windows will search PATH for what you meant by “python”, and find the correct one.

此刻的回忆 2024-12-21 16:08:40

你做了吗:

> source ../path-to/bin/activate

have you done:

> source ../path-to/bin/activate

?

赏烟花じ飞满天 2024-12-21 16:08:38

解决方案是通过使用显式调用 python: python file.py

http://www.velocityreviews.com/forums/t727997-problems-running-virtualenv-under-windows.html

由于某种原因,在windows中用.py注册的python没有调用虚拟环境。

the solution is to explicitly invoke python by using: python file.py

as described in http://www.velocityreviews.com/forums/t727997-problems-running-virtualenv-under-windows.html

for some reason, the python registered with .py in windows does not invoke virtualenv.

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