Django nonrel 错误“No Module name models”

发布于 2024-10-23 23:57:24 字数 808 浏览 1 评论 0原文

伙计们, 我开始玩 django-nonrel,并尝试在其上运行我的旧 django 应用程序。 我的应用程序是在 django 1.2.1 & 上完成的。蟒蛇2.6。

当我启动本地服务器时,出现一些警告,但服务器启动良好。

但是,当我尝试从浏览器运行主页时,django 会抛出以下错误

ImportError at /bytex
No module named bytexpro.bytex.models
Request Method: GET
Request URL:    http://127.0.0.1:8000/bytex
Django Version: 1.3 beta 1
Exception Type: ImportError
Exception Value:    
No module named  bytexpro.bytex.models
Exception Location: E:\home\web\bytex\bytexpro\bytex\admin.py in <module>, line 1
Python Executable:  C:\python26\python.exe
...

My admin.py 看起来像这样

from bytexpro.bytex.models import ItemGroup
from bytexpro.bytex.models import Item
from bytexpro.bytex.models import Supplier
....

Anything ii has gone to include?

迦特

Guys,
I Started playing with django-nonrel, and am trying to run my old django app on it.
My app was done on django 1.2.1 & python 2.6.

When i fire up the local server, there are a couple of warnings but the server starts well.

But when i try to run the main page from the browser, django throws the following error

ImportError at /bytex
No module named bytexpro.bytex.models
Request Method: GET
Request URL:    http://127.0.0.1:8000/bytex
Django Version: 1.3 beta 1
Exception Type: ImportError
Exception Value:    
No module named  bytexpro.bytex.models
Exception Location: E:\home\web\bytex\bytexpro\bytex\admin.py in <module>, line 1
Python Executable:  C:\python26\python.exe
...

My admin.py looks like this

from bytexpro.bytex.models import ItemGroup
from bytexpro.bytex.models import Item
from bytexpro.bytex.models import Supplier
....

Anything i i have forgotten to include?

Gath

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

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

发布评论

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

评论(1

夜空下最亮的亮点 2024-10-30 23:57:24

尝试

from bytex.models import ....

try

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