1

I'm very new to both django and python and I have run in too an error to which I do not understand. The runserver command works, and I can enter my website on localhost. But the Shell is broken somehow. Im using PyCharm on an Conda virtual env as far as I know. I'm using mac os high sierra. Edit: Also using Postgres.

Error when trying to import a model

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.

The model in question looks like this:

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

Another weird this is that when if I instead of the regular "mac os" terminal use the PyCharm shell it starts with an error message like this:

/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'

If anyone could help I'd be grateful!

Printmeister
  • 103
  • 7
  • Are you using PostgreSQL? If yes, you should have psycopg2 installed. It is the Python driver for PostgreSQL. – Josewails Jul 11 '18 at 16:31
  • Hello and thanks. Yes I'm using Postgres and I have installed psycopg2 to my knowledge. If I run "pip install psycopg2" it says "all requirements met" or something and the same if i run "conda install psycopg2. So in the last "error-message" it cant find it for some reason. – Printmeister Jul 11 '18 at 16:47
  • definitely something with psycopg2. Created a new project with postgres. same as last above error occurs. – Printmeister Jul 11 '18 at 19:13

3 Answers3

0

I ran into this problem. The problem for me was that psycopg2 and six were clashing. I was using psycopg2==2.6.1 and mismatched version of six. I specified to use six 1.10 and psycopg2==2.7.1 and it worked. I would verify that your version of six works with the verision of psycopg2. If that doesn't work I would take a look at this. If you are not sure how to check your versions, write out a requirements.txt using pip freeze > requirements.txt .

Taylor
  • 1,223
  • 1
  • 15
  • 30
0

Solved: As Josewails pointed out. The error was indeed psycopg2 related.

Since I'm using Conda virtual env, I was able to install psycopg2 through the "Anaconda navigator" gui/application.

It then added the dependent libpg etc.

Now it everything works both in the terminal and "runserver".

Printmeister
  • 103
  • 7
0

Another solution was to reinstall psycopg with.

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

For some reason this worked

Printmeister
  • 103
  • 7