web-dev-qa-db-ja.com

Django ImportError:ミドルウェアという名前のモジュールがありません

Djangoバージョン1.8およびpython 2.7を使用しています。プロジェクトの実行後に、次のエラーが発生します。

Traceback (most recent call last):
  File "C:\Python27\lib\wsgiref\handlers.py", line 85, in run
    self.result = application(self.environ, self.start_response)
  File "C:\Python27\lib\site-packages\Django\contrib\staticfiles\handlers.py", line 63, in __call__
    return self.application(environ, start_response)
  File "C:\Python27\lib\site-packages\Django\core\handlers\wsgi.py", line 170, in __call__
    self.load_middleware()
  File "C:\Python27\lib\site-packages\Django\core\handlers\base.py", line 50, in load_middleware
    mw_class = import_string(middleware_path)
  File "C:\Python27\lib\site-packages\Django\utils\module_loading.py", line 26, in import_string
    module = import_module(module_path)
  File "C:\Python27\lib\importlib\__init__.py", line 37, in import_module
    __import__(name)
ImportError: No module named middleware
[26/Aug/2015 20:34:29] "GET /favicon.ico HTTP/1.1" 500 59

これは私のsettings.pyファイルです

"""
Django settings for collageapp project.

Generated by 'Django-admin startproject' using Django 1.8.

For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os

APP_PATH = os.path.dirname(os.path.abspath(__file__))
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '******************************************************'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = (
    'Django.contrib.admin',
    'Django.contrib.auth',
    'Django.contrib.contenttypes',
    'Django.contrib.sessions',
    'Django.contrib.messages',
    'Django.contrib.staticfiles',
    'manageApp',
    'Django.contrib.sites',
    'allauth',
    'allauth.account',
    'allauth.socialaccount',
    'allauth.socialaccount.providers.facebook',
    'allauth.socialaccount.providers.google',
    'Django.contrib.admindocs',
    'rest_framework',
)

SITE_ID = 1

MIDDLEWARE_CLASSES = (
    'Django.middleware.common.CommonMiddleware',
    'Django.middleware.csrf.CsrfViewMiddleware',
    'Django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'Django.middleware.clickjacking.XFrameOptionsMiddleware',
    'Django.middleware.security.SecurityMiddleware',
    'corsheaders.middleware.CorsMiddleware',
    'oauth2_provider.middleware.OAuth2TokenMiddleware',
)


ROOT_URLCONF = 'collageapp.urls'
CORS_Origin_ALLOW_ALL = True

TEMPLATES = [
    {
        'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'Django.template.context_processors.debug',
                'Django.template.context_processors.request',
                'Django.contrib.auth.context_processors.auth',
                'Django.contrib.messages.context_processors.messages',
                'allauth.account.context_processors.account',
                'allauth.socialaccount.context_processors.socialaccount'
            ],
        },
    },
]

WSGI_APPLICATION = 'collageapp.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases

DATABASES = {
     'default': {
        'ENGINE': 'Django.db.backends.mysql',
        'NAME': 'college_app',
        'USER': 'root',
        'PASSWORD': '',
        'Host': 'localhost',   # Or an IP Address that your DB is hosted on
        'PORT': '3306',
    }
}



# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/

STATIC_URL = '/static/'

私はエラーをサーフィンしようとしましたが、無駄でした。私の同じコードは他のマシンでも正常に機能しています。

9
priya vyas

プロジェクトディレクトリでpython manage.py Shellを実行して、pythonシェルを開きます。

次のコマンドを実行します一度に1つずつ pythonシェル:

>>> from corsheaders.middleware import CorsMiddleware
>>> from oauth2_provider.middleware import OAuth2TokenMiddleware
>>> from Django.contrib.auth.middleware import SessionAuthenticationMiddleware

行の1つで、次のようなエラーが発生するはずです。

Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named middleware

そのエラーを与える行は、問題を引き起こしている欠落しているモジュールです。

モジュールが検索されるパスを見つけるには、次のようにします。

>>> import sys; sys.path

または、python Shellの使用方法がわからない場合は、エラーが発生しなくなるまで、settings.MIDDLEWARE_CLASSESの次の行を一度に1つずつ削除できます。もう:

'Django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'corsheaders.middleware.CorsMiddleware',
'oauth2_provider.middleware.OAuth2TokenMiddleware',

エラーが発生したパッケージを再インストールするだけです。

Django.contrib.auth.middleware-> Django

corsheaders.middleware-> corsheaders

oauth2_provider.middleware-> oauth2_provider

13
user193130

サポートパッケージがすべてインストールされていることを確認してください。複数のPythonインタープリターがインストールされていて、パッケージを別のインタープリターと一緒にインストールしているときに、あるインタープリターで誤ってDjangoを実行していたという問題が発生しました。両方のマシンに同じバージョンのパッケージがあることを確認します。corsheaders.middleware.CorsMiddlewareoauth2_provider.middleware.OAuth2TokenMiddlewareはDjangoの一部ではないため、細心の注意を払ってください。