Python Django车间错误:“没有名为车间的模块”

Python Django车间错误:“没有名为车间的模块”,python,django,django-cms,django-shop,Python,Django,Django Cms,Django Shop,当我启动django商店时,我收到一条错误消息:ImportError:没有名为shop的模块 我已经切换到我的项目总监; 激活的虚拟病毒; 安装django车间,使用pip安装django车间; 将模块商店添加到我的项目目录中的settings.py; 在my urls.py中添加了字符串r“^shop/”,包括“shop.urls”。 所有的工作都没有错误。有什么建议可以解决这个问题吗 settings.py中的已安装应用列表: 'INSTALLED_APPS = ( 'djangocms_

当我启动django商店时,我收到一条错误消息:ImportError:没有名为shop的模块

我已经切换到我的项目总监; 激活的虚拟病毒; 安装django车间,使用pip安装django车间; 将模块商店添加到我的项目目录中的settings.py; 在my urls.py中添加了字符串r“^shop/”,包括“shop.urls”。 所有的工作都没有错误。有什么建议可以解决这个问题吗

settings.py中的已安装应用列表:

'INSTALLED_APPS = (
'djangocms_admin_style',
'djangocms_text_ckeditor',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
'django.contrib.sites',
'django.contrib.sitemaps',
'django.contrib.staticfiles',
'django.contrib.messages',
'cms',
'menus',
'sekizai',
'treebeard',
'djangocms_style',
'djangocms_column',
'djangocms_file',
'djangocms_flash',
'djangocms_googlemap',
'djangocms_inherit',
'djangocms_link',
'djangocms_picture',
'djangocms_teaser',
'djangocms_video',
'reversion',
'shop',
'shop.addressmodel',
'eshop',
"

以下是pip冻结-本地结果:

从终端回溯:

Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line
    utility.execute()
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 354, in execute
    django.setup()
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/__init__.py", line 21, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/apps/registry.py", line 85, in populate
    app_config = AppConfig.create(entry)
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/apps/config.py", line 87, in create
    module = import_module(entry)
  File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
    __import__(name)
ImportError: No module named shop

您的pip冻结未显示django shop已安装。
您确定安装成功吗?

在此添加您已安装的应用程序Show pip freeze-Local Put all traceback..发生哪一行错误?在您的pip freeze中,没有django-shop。请尝试重新安装itreinstalled并正常运行:非常感谢
Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line
    utility.execute()
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 354, in execute
    django.setup()
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/__init__.py", line 21, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/apps/registry.py", line 85, in populate
    app_config = AppConfig.create(entry)
  File "/home/stp/web/eshop/env/local/lib/python2.7/site-packages/django/apps/config.py", line 87, in create
    module = import_module(entry)
  File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
    __import__(name)
ImportError: No module named shop