Django 1.4导入报错No module named apps

Django 1.4 import error No module named apps

我是 运行 Windows 服务器 2008 R2(64 位)上的 django 应用程序。同一个应用程序在我的其他系统上运行良好,该系统具有 windows 7 64 位。我实际上正在尝试将应用程序移动到另一台机器。我正在使用 Python 2.7 和 django 1.4。 manage.py runserver 工作正常并且能够启动服务器。

0 errors found
Django version 1.4, using settings 'checkmeout.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[11/Aug/2016 05:22:09] "GET /admin/ HTTP/1.1" 500 115256 

尝试从 http://127.0.0.1/8000,I 访问管理页面或任何其他 url 时出现以下错误。

ImportError at /admin/
No module named apps
Request Method: GET
Request URL:    http://127.0.0.1:8000/admin/
Django Version: 1.4
Exception Type: ImportError
Exception Value:    
No module named apps
Exception Location: C:\Python27\lib\site-     packages\django_extensions\admin\__init__.py in <module>, line 10
Python Executable:  C:\Python27\python.exe
Python Version: 2.7.5
Python Path:    
['C:\HardwareReservation\checkmeout2',
'C:\Windows\system32\python27.zip',
'C:\Python27\DLLs',
'C:\Python27\lib',
'C:\Python27\lib\plat-win',
'C:\Python27\lib\lib-tk',
'C:\Python27',
'C:\Python27\lib\site-packages',
'C:/SoftwareServices/checkmeout']

pip freeze 的输出(在它不起作用的系统上)放在下面以防有帮助。

amqp==1.4.9
anyjson==0.3.3
billiard==3.3.0.23
celery==3.1.23
Django==1.4
django-apps==0.1.0
django-celery==3.1.17
django-extensions==1.7.1
djangorestframework==3.2.0
kombu==3.0.35
MySQL-python==1.2.4
pytz==2016.6.1
six==1.10.0
South==1.0.2
web.py==0.37

它工作的系统上的 pip freeze 如下:

amqp==1.4.9
anyjson==0.3.3
billiard==3.3.0.23
celery==3.1.23
Django==1.4
django-celery==3.1.17
django-extensions==1.6.7
kombu==3.0.35
MySQL-python==1.2.5
pysphere==0.1.7
python-ldap==2.4.25
pytz==2016.4
six==1.10.0
South==1.0.2
virtualenv==15.0.2

我运行陷入了类似的问题。尝试安装有效的旧版本 django-extensions:

pip install django-extensions=="1.6.7"