Django 运行错误版本

发布于 2024-10-02 04:17:14 字数 642 浏览 2 评论 0原文

虽然从 shell 运行“python”运行的是 Python v2.7,但 Django 正在加载 python2.4 的文件,如我加载 django 站点时的错误所示:

Mod_python 错误:“PythonHandler django.core.handlers.modpython”

回溯(最近一次调用最后一次):

文件“/usr/lib/python2.4/site-packages/mod_python/apache.py”,第 287 行,在 HandlerDispatch 中 日志=调试)

文件“/usr/lib/python2.4/site-packages/mod_python/apache.py”,第 461 行,在 import_module 中 f, p, d = imp.find_module(parts[i], 路径)

导入错误:没有名为 django 的模块

我认为 Django 是为 2.7 版本安装的,这就是为什么底部显示“没有名为 django 的模块”

这是我的第一个 django 安装(它位于 mediatemple DV 服务器上),所以如果我做了一些愚蠢的事情,我不会感到惊讶。谢谢!

Although running "python" from the shell runs Python v2.7, Django is loading files for python2.4, as shown in the error when I load a django site:

Mod_python error: "PythonHandler django.core.handlers.modpython"

Traceback (most recent call last):

File "/usr/lib/python2.4/site-packages/mod_python/apache.py", line 287, in HandlerDispatch
log=debug)

File "/usr/lib/python2.4/site-packages/mod_python/apache.py", line 461, in import_module
f, p, d = imp.find_module(parts[i], path)

ImportError: No module named django

I think Django is installed for version 2.7 and that's why the bottom says "No module named django"

This is my first django install (it's on a mediatemple DV server) so I wouldn't be surprised if I'm doing something stupid. Thanks!

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

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

发布评论

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

评论(1

岁吢 2024-10-09 04:17:14

mod_python 是为 2.4 构建的,但 Django 是为 2.7 安装的。要么为 2.7 构建 mod_python,在 2.4 下安装 Django,要么将 Django 的本地副本放入您的项目中,这样 Python 的版本就无关紧要了。

mod_python is built for 2.4, but Django is installed for 2.7. Either build mod_python for 2.7, install Django under 2.4, or put a local copy of Django with your project so that the version of Python doesn't matter.

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