[Django]-Django upgrading to 1.9 error "AppRegistryNotReady: Apps aren't loaded yet."

53๐Ÿ‘

โœ…

Iโ€™d a custom function written on one of my models __init__.py file. It was causing the error. When I moved this function from __init__.py it worked.

๐Ÿ‘คKishore K

177๐Ÿ‘

Try to add this lines to the top of your settings file:

import django
django.setup()

And if this will not help you try to remove third-party applications from your installed apps list one-by-one.

๐Ÿ‘คinlanger

52๐Ÿ‘

My problem was that I tried to import a Django model before calling django.setup()

This worked for me:

import django
django.setup()

from myapp.models import MyModel

The above script is in the project root folder.

๐Ÿ‘คM3RS

18๐Ÿ‘

In my case, the error occurred when I made python manage.py makemigrations on Django 2.0.6.

The solution was to run python manage.py runserver and see the actual error (which was just a missing environment variable).

๐Ÿ‘คPavel Vergeev

14๐Ÿ‘

I think this wasnโ€™t mentioned yet, but is a common cause for the error: The error occurs when you specify startup code that uses models. If you follow this approach and put it into your AppConfig you must not import models at the top of the file, but inside the ready() method. For example as follows:

# works as models are imported in the ready() method
from django.apps import AppConfig

class MatcherConfig(AppConfig):
    name = 'matcher'
    verbose_name = 'Match-Making'
    def ready(self):
        from matcher.background_tasks import close_timeout_games
        from matcher.models import FourPlayerGame
        # check if a player is not responding every 5 seconds
        close_timeout_games(FourPlayerGame, repeat=5)

However, the following would be wrong:

# won't work as models are imported at the beginning
from django.apps import AppConfig
from matcher.background_tasks import close_timeout_games
from matcher.models import FourPlayerGame

class MatcherConfig(AppConfig):
    name = 'matcher'
    verbose_name = 'Match-Making'
    def ready(self):
        # check if a player is not responding every 5 seconds
        close_timeout_games(FourPlayerGame, repeat=5)

For more information also see this answer.

๐Ÿ‘คF.M.F.

12๐Ÿ‘

This error may occur when you are adding an app in INSTALLED_APPS in the settings.py file but you do not have that app installed in your computer. You have two solution:

  1. Install that app using package managers like pip in ubuntu
  2. Or Comment out that installed app in the settings.py file

This error may also arise if you are not in your virtual environment which you may have created for your project.

๐Ÿ‘คAmrit

9๐Ÿ‘


First import and run django.setup() before importing any models


All the above answers are good but there is a simple mistake a person could do is that (In fact in my case it was).

I imported Django model from my app before calling django.setup(). so proper way is to doโ€ฆ

import os
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'first_project.settings')

import django
django.setup()

then any other import like

from faker import Faker
import random
# import models only after calling django.setup()
from first_app.models import Webpage, Topic, AccessRecord
๐Ÿ‘คHimanshu Patel

7๐Ÿ‘

For me, the problem came from the fact that I was importing an app in INSTALLED_APPS which was itself importing a model in its __init__.py file

I had :

settings.py

INSTALLED_APPS = [
    ...
    'myapp',
    ...
]

myapp.__init__.py

from django.contrib.sites.models import Site

commenting out import models in myapp.__init__.py made it work :

# from django.contrib.sites.models import Site
๐Ÿ‘คAlbyorix

5๐Ÿ‘

Try removing the entire settings.LOGGING dictConfig and restart the server. If that works, rewrite the setting according to the v1.9 documentation.

https://docs.djangoproject.com/en/1.9/topics/logging/#examples

๐Ÿ‘คpragmar

5๐Ÿ‘

You may get this error if youโ€™ve started normal Python shell by mistake and trying to import your Django models in that.

You should instead use python manage.py shell for that.

๐Ÿ‘คKrishna

3๐Ÿ‘

For me commenting out

'grappelli.dashboard',
'grappelli',

in INSTALLED_APPS worked

๐Ÿ‘คalgometrix

3๐Ÿ‘

django.setup() in the top will not work while you are running a script explicitly.
My problem solved when I added this in the bottom of the settings file

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
import sys
if BASE_DIR not in sys.path:
    sys.path.append(BASE_DIR)
os.environ['DJANGO_SETTINGS_MODULE'] =  "igp_lrpe.settings"
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "igp_lrpe.settings")
import django
django.setup()
๐Ÿ‘คArup Barman

2๐Ÿ‘

I put the User import into the settings file for managing the rest call token like this

# settings.py
from django.contrib.auth.models import User
def jwt_get_username_from_payload_handler(payload):
   ....

JWT_AUTH = {
    'JWT_PAYLOAD_GET_USERNAME_HANDLER': jwt_get_username_from_payload_handler,
    'JWT_PUBLIC_KEY': PUBLIC_KEY,
    'JWT_ALGORITHM': 'RS256',
    'JWT_AUDIENCE': API_IDENTIFIER,
    'JWT_ISSUER': JWT_ISSUER,
    'JWT_AUTH_HEADER_PREFIX': 'Bearer',
}
REST_FRAMEWORK = {
    'DEFAULT_PERMISSION_CLASSES': (
        'rest_framework.permissions.IsAuthenticated',
    ),
    'DEFAULT_AUTHENTICATION_CLASSES': (
       'rest_framework_jwt.authentication.JSONWebTokenAuthentication',
    ),
}

Because at that moment, Django libs are not ready yet. Therefore, I put the import inside the function and it started to work. The function needs to be called after the server is started

๐Ÿ‘คThai Tran

2๐Ÿ‘

I get that error when I try to run test.py(not full scripts, I donโ€™t want to use python manage.py test)

and the following method is working for me.

import os
import django
if 'env setting':
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'YourRoot.settings')
    django.setup()
from django.test import TestCase
...

class SomeTest(TestCase):
    def test_one(self):  # <-- Now, I can run this function by PyCharm
        ...

    def test_two(self):
        ...
๐Ÿ‘คCarson

1๐Ÿ‘

My problem was:
django-reversion>=1.8.7,<1.9

for django 1.9.7 you should use:
django-reversion==1.10.0

I were upgraded django-cms 3.2 to 3.3, and found it by commenting apps, then uncommenting back.

Correct answer here:
https://stackoverflow.com/a/34040556/2837890

๐Ÿ‘คAnshik

1๐Ÿ‘

This issue is also observed for inconsistent settings.py for incorrectly writing INSTALLED_APPS, verify if you correctly included apps and separated with โ€œ,โ€ .

๐Ÿ‘คWaykos

1๐Ÿ‘

When I change my django version to 1.9, it donโ€™t arise the error.

pip uninstall django
pip install django==1.9

๐Ÿ‘คadmin

1๐Ÿ‘

I was in trouble with such matter
my problem was because of having this piece of code in settings.py

import myapp.models

when I removed this code problem fixed
I recommend check your settings.py and remove such code

๐Ÿ‘คHamide Kavoosi

0๐Ÿ‘

In my case one of my settings, โ€˜CORS_ORIGIN_WHITELISTโ€™ was set in the settings.py file but was not available in my .env file. So Iโ€™ll suggest that you check your settings, especially those linked to .env

๐Ÿ‘คmedobills

0๐Ÿ‘

As others have said this can be caused when youโ€™ve not installed an app that is listed in INSTALLED_APPS.

In my case, manage.py was attempting to log the exception, which led to an attempt to render it which failed due to the app not being initialized yet. By
commenting out the except clause in manage.py the exception was displayed without special rendering, avoiding the confusing error.

# Temporarily commenting out the log statement.
#try:
    execute_from_command_line(sys.argv)
#except Exception as e:
#    log.error('Admin Command Error: %s', ' '.join(sys.argv), exc_info=sys.exc_info())
#    raise e
๐Ÿ‘คJohn Lehmann

0๐Ÿ‘

I tried tons of things, but only downgrading Django to 1.8.18 fixed this issue for me:

pip install django==1.8.18

It is one of the installed apps that is failing, but I could not find which one.

๐Ÿ‘คoriadam

0๐Ÿ‘

I get that error when i try to run:

python manage.py makemigrations

i tried so many things and realized that i added some references to โ€œsettings.pyโ€ โ€“ โ€œINSTALLED_APPSโ€

Just be sure what you write there is correct. My mistake was โ€œ.model.โ€ instead of โ€œ.app.โ€

Corrected that mistake and itโ€™s working now.

๐Ÿ‘คCastor

0๐Ÿ‘

Iโ€™ve run into this problem and it was rooted in asgi.py. weโ€™ve loaded the below module:

from channels.auth import AuthMiddlewareStack 

but we didnโ€™t use it in the ProtocolTypeRouter. apparently, we have to use
websocket or other protocols when we call the AuthMiddlewareStack module.

๐Ÿ‘คEhsan Ahmadi

0๐Ÿ‘

For others that might stumble upon this in future:

If you encounter this issue while running Python 3.8 and trying to use multiprocessing package, chances are that it is due to the sub processed are โ€˜spawnedโ€™ instead of โ€˜forkedโ€™. This is a change with Python 3.8 on Mac OS where the default process start method is changed from โ€˜forkโ€™ to โ€˜spawnโ€™.
This is a known issue with Django.

To get around it:

import multiprocessing as mp
mp.set_start_method('fork')
๐Ÿ‘คOscar Chen

0๐Ÿ‘

I faced this problem when I was trying to load a function in the init file (__init__.py) of my settings package.

The cause of this error

django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet

is that, before settings were loaded, I wanted to load another module (e.g. rest_framework).

To solve this, I put functions in another module (file) in settings package
(e.g. common.py), and it solved the problem.

0๐Ÿ‘

The reason I got this error appregistrynotready is That I accidentally Register User model in app.py instead of admin.py

This is how itโ€™s looked like

app.py

from django.contrib import admin
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
from .models import User

@admin.register(User)
class UserAdmin(BaseUserAdmin):
    pass

0๐Ÿ‘

i faced the same issue when i used

from django.urls import reverse

Solution:

from django.urls import reverse_lazy

-1๐Ÿ‘

Late to the party, but grappelli was the reason for my error as well. I looked up the compatible version on pypi and that fixed it for me.

๐Ÿ‘คlslaz

-1๐Ÿ‘

Try activating the virtual env.
In my case, using the git command line tool:

source scripts/activate

Solves my problem.

-1๐Ÿ‘

Got this error while trying to access model objects in apps.py:

class QuizConfig(AppConfig):
name = 'quiz'

def ready(self):
    print('===============> Django just started....')
    questions_by_category = Question.objects.filter(category=2) # <=== Guilty line of code.

Trying to access Question before the app has loaded the model class caused the error for me.

-2๐Ÿ‘

If your setting.py files fill are correct๏ผŒyou can try to arrive manage.py files proceed call danjgo.setup() in main method . Then run manage.py ,finally again run project ,the issue could disappear.

๐Ÿ‘คxing liu

-2๐Ÿ‘

In the โ€œadminโ€ module of your app package, do register all the databases created in โ€œmodelsโ€ module of the package.

Suppose you have a database class defined in โ€œmodelsโ€ module as:

class myDb1(models.Model):
    someField= models.Charfiled(max_length=100)

so you must register this in the admin module as:

from .models import myDb1
admin.site.register(myDb1)

I hope this resolve the error.

๐Ÿ‘คPreetam

Leave a comment