web-dev-qa-db-ja.com

Django「コンプレッサー」という名前のモジュールはありません

Cmdを使用してスーパーユーザーを作成しようとしていますが、コマンドを実行するたびに次のように表示されます。

C:\Users\PCDOM\Desktop\Power\pm_app>python manage.py syncdb
Traceback (most recent call last):
  File "manage.py", line 17, in <module>
    execute_from_command_line(sys.argv)
  File "C:\Python27\lib\site-packages\Django\core\management\__init__.py", line
338, in execute_from_command_line
    utility.execute()
  File "C:\Python27\lib\site-packages\Django\core\management\__init__.py", line
312, in execute
    Django.setup()
  File "C:\Python27\lib\site-packages\Django\__init__.py", line 18, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "C:\Python27\lib\site-packages\Django\apps\registry.py", line 85, in popu
late
    app_config = AppConfig.create(entry)
  File "C:\Python27\lib\site-packages\Django\apps\config.py", line 86, in create

    module = import_module(entry)
  File "C:\Python27\lib\importlib\__init__.py", line 37, in import_module
    __import__(name)
ImportError: No module named compressor

仮想環境とsettings.pyにインストールしていますが、次のようになります。

enter image description here

INSTALLED_APPS = (
    'Django.contrib.auth',
    'Django.contrib.contenttypes',
    'Django.contrib.sessions',
    'Django.contrib.sites',
    'Django.contrib.messages',
    'Django.contrib.staticfiles',
    #'bootstrap3',
    'promo',
    'ums',
    'compressor',
    #'sqlserver_ado',
    # Uncomment the next line to enable the admin:
    'Django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    'Django.contrib.admindocs',
)

STATICFILES_FINDERS = (
    'Django.contrib.staticfiles.finders.FileSystemFinder',
    'Django.contrib.staticfiles.finders.AppDirectoriesFinder',
    #'Django.contrib.staticfiles.finders.DefaultStorageFinder',
    'compressor.finders.CompressorFinder',
)

何らかの理由Djangoが私に飛び出しているのですか?

8
john

ローカルピップを使用してDjango-compressorをインストールする必要があったため、何らかの理由で仮想環境コンプレッサーを使用していません

12
john

VenvにDjango_compressorを再インストールする必要があります

 pip install Django_compressor
1
cryptoKTM