另一个 Django "Apps aren't loaded yet"

Another Django "Apps aren't loaded yet"

我对 django 和 python 都很陌生,我也有 运行 一个我不明白的错误。 运行server 命令有效,我可以在 localhost 上进入我的网站。 但是 Shell 以某种方式被破坏了。 据我所知,我在 Conda 虚拟环境中使用 PyCharm。我正在使用 mac os high sierra。编辑:也使用 Postgres.

尝试导入模型时出错

Python 3.6.5 |Anaconda, Inc.| (default, Apr 26 2018, 08:42:37) 
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from catalog.models import Routines
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Users/fridalarsson/PycharmProjects/hapionline6/catalog/models.py", line 3, in <module>
    from senders.models import Senders
  File "/Users/fridalarsson/PycharmProjects/hapionline6/senders/models.py", line 4, in <module>
    class Senders(models.Model):
  File "/Users/fridalarsson/anaconda3/lib/python3.6/site-packages/django/db/models/base.py", line 100, in __new__
    app_config = apps.get_containing_app_config(module)
  File "/Users/fridalarsson/anaconda3/lib/python3.6/site-packages/django/apps/registry.py", line 244, in get_containing_app_config
    self.check_apps_ready()
  File "/Users/fridalarsson/anaconda3/lib/python3.6/site-packages/django/apps/registry.py", line 127, in check_apps_ready
    raise AppRegistryNotReady("Apps aren't loaded yet.")
django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet.

有问题的模型如下所示:

from __future__ import unicode_literals
from django.db import models
from senders.models import Senders


class Routines(models.Model):
    routine_id = models.AutoField(primary_key=True)
    sender_id = models.ForeignKey(Senders, on_delete=models.CASCADE, default=1)
    in_routine = models.CharField(max_length=20)
    out_routine = models.CharField(max_length=20)
    mail_class = models.CharField(max_length=5)
    last_change = models.DateTimeField(auto_now=True)
    def __int__(self):
        return self.routine_id

另一个奇怪的是,如果我使用 PyCharm shell 而不是常规 "mac os" 终端,它会以这样的错误消息开头:

/Users/fridalarsson/.conda/envs/hapionline6/bin/python /Applications/PyCharm.app/Contents/helpers/pydev/pydevconsole.py 63555 63556
import sys; print('Python %s on %s' % (sys.version, sys.platform))
import django; print('Django %s' % django.get_version())
sys.path.extend(['/Users/fridalarsson/PycharmProjects/hapionline6', '/Applications/PyCharm.app/Contents/helpers/pycharm', '/Applications/PyCharm.app/Contents/helpers/pydev'])
if 'setup' in dir(django): django.setup()
import django_manage_shell; django_manage_shell.run("/Users/fridalarsson/PycharmProjects/hapionline6")
PyDev console: starting.
Python 3.6.6 |Anaconda, Inc.| (default, Jun 28 2018, 11:07:29) 
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Django 2.0.5
Traceback (most recent call last):
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/backends/postgresql/base.py", line 20, in <module>
    import psycopg2 as Database
  File "/Applications/PyCharm.app/Contents/helpers/pydev/_pydev_bundle/pydev_import_hook.py", line 19, in do_import
    module = self._system_import(name, *args, **kwargs)
ModuleNotFoundError: No module named 'psycopg2'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "<input>", line 6, in <module>
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/apps/registry.py", line 112, in populate
    app_config.import_models()
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/apps/config.py", line 198, in import_models
    self.models_module = import_module(models_module_name)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 994, in _gcd_import
  File "<frozen importlib._bootstrap>", line 971, in _find_and_load
  File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 678, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/contrib/auth/models.py", line 2, in <module>
    from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
  File "/Applications/PyCharm.app/Contents/helpers/pydev/_pydev_bundle/pydev_import_hook.py", line 19, in do_import
    module = self._system_import(name, *args, **kwargs)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/contrib/auth/base_user.py", line 47, in <module>
    class AbstractBaseUser(models.Model):
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/models/base.py", line 114, in __new__
    new_class.add_to_class('_meta', Options(meta, app_label))
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/models/base.py", line 315, in add_to_class
    value.contribute_to_class(cls, name)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/models/options.py", line 205, in contribute_to_class
    self.db_table = truncate_name(self.db_table, connection.ops.max_name_length())
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/__init__.py", line 33, in __getattr__
    return getattr(connections[DEFAULT_DB_ALIAS], item)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/utils.py", line 202, in __getitem__
    backend = load_backend(db['ENGINE'])
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/utils.py", line 110, in load_backend
    return import_module('%s.base' % backend_name)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "/Users/fridalarsson/.conda/envs/hapionline6/lib/python3.6/site-packages/django/db/backends/postgresql/base.py", line 24, in <module>
    raise ImproperlyConfigured("Error loading psycopg2 module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading psycopg2 module: No module named 'psycopg2'

如果有人能提供帮助,我将不胜感激!

我运行遇到了这个问题。对我来说问题是 psycopg2 和 six 发生冲突。我使用的是 psycopg2==2.6.1 和 6 个不匹配的版本。我指定使用六个 1.10 和 psycopg2==2.7.1 并且它有效。我会验证您的 6 版本是否适用于 psycopg2 的版本。如果这不起作用,我会看看 this。如果您不确定如何检查您的版本,请使用 pip freeze > requirements.txt 写出 requirements.txt .

已解决: 正如 Josewails 指出的那样。该错误确实与 psycopg2 相关。

因为我使用的是 Conda 虚拟环境,所以我能够通过 "Anaconda navigator" gui/application.

安装 psycopg2

然后添加依赖的libpg等

现在在终端和 "runserver" 中一切正常。

另一个解决方案是重新安装 psycopg。

pip install --global-option=build_ext \
            --global-option="-I/usr/local/opt/openssl/include" \
            --global-option="-L/usr/local/opt/openssl/lib" psycopg2

出于某种原因,这奏效了