-
Notifications
You must be signed in to change notification settings - Fork 337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
运行报错python3 manage.py runserver 0.0.0.0:9000缺少模块 #15
Comments
希望大哥看到了给指点下哦~ 谢谢啦 |
我认为有可能是两个原因:要不就是python解释器缺少某些组件,要不就是你的电脑的系统或者配置啥的与python解释器不兼容或者其他问题,因为没有实际操作过,所以不能确定具体原因。你可以尝试重新下载python解释器,或者从网上在查找一下这个报错原因如何解决。不好意思昂
------------------ 原始邮件 ------------------
发件人: "卡子火"<notifications@github.com>;
发送时间: 2019年6月19日(星期三) 下午4:20
收件人: "triaquae/CrazyEye"<CrazyEye@noreply.github.com>;
抄送: "Subscribed"<subscribed@noreply.github.com>;
主题: [triaquae/CrazyEye] 运行报错python3 manage.py runserver 0.0.0.0:9000缺少模块 (#15)
File "/root/CrazyEye/CrazyEye/init.py", line 6, in
from .celery import app as celery_app
File "/root/CrazyEye/CrazyEye/celery.py", line 4, in
from celery import Celery
ModuleNotFoundError: No module named 'celery'
环境前期的依赖包包括py模块都已经装好了,为啥启动就报那个模块没有··· 很尴尬啊
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
看到Alex老师开发的堡垒机就来了 |
requirements.txt中缺少了celery的版本。最新版的celery需要django1.11以上,另外django-celery-beat不知道哪个版本合适。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
File "/root/CrazyEye/CrazyEye/init.py", line 6, in
from .celery import app as celery_app
File "/root/CrazyEye/CrazyEye/celery.py", line 4, in
from celery import Celery
ModuleNotFoundError: No module named 'celery'
环境前期的依赖包包括py模块都已经装好了,为啥启动就报那个模块没有··· 很尴尬啊
The text was updated successfully, but these errors were encountered: