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

后端 未结 8 1367
生来不讨喜
生来不讨喜 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 01:51

    For whitenoise version 4.0 or above: - The WSGI integration option for Django (which involved editing wsgi.py) has been removed. Instead, you should add WhiteNoise to your middleware list in settings.py and remove any reference to WhiteNoise from wsgi.py.

    MIDDLEWARE = [
      'django.middleware.security.SecurityMiddleware',
      'whitenoise.middleware.WhiteNoiseMiddleware',
      # ...
    ]
    
    • The 'whitenoise.django.GzipManifestStaticFilesStorage' alias has now been removed. Instead you should use the correct import path: 'whitenoise.storage.CompressedManifestStaticFilesStorage'.

提交回复
热议问题