Cannot import ASGI_APPLICATION module while runserver using channels 2

后端 未结 12 1025
孤独总比滥情好
孤独总比滥情好 2021-01-07 19:59

I have followed the channels tutorial but while running these error throw

Version of the packages is channels==2.1.2 Django==2.0.4<

12条回答
  •  被撕碎了的回忆
    2021-01-07 20:36

    In my case it was wrong import in different file.

    What you should do is

    python manage.py shell
    from mysite.routing import application
    

    Look what exact error it produces and try to fix that

提交回复
热议问题