Django ImproperlyConfigured: WSGI application 'myproject.wsgi.application' could not be loaded; Error importing module

后端 未结 8 1356
生来不讨喜
生来不讨喜 2021-02-08 01:04

I have an almost fresh install of django and when I try to python manage.py runserver.It is is giving me this error:

ImproperlyConfigured: WSGI applicati

8条回答
  •  孤城傲影
    2021-02-08 02:00

    Check the settings.py,

    MIDDLEWARE=[
        'whitenoise.middleware.WhiteNoiseMiddleware',
    ]
    

    remove 'whitenoise.middleware.WhiteNoiseMiddleware', or install Whitenoise (pip install whitenoise)

提交回复
热议问题