Skip to content Skip to sidebar Skip to footer

Django: No Module Named 'project'

I was working on a Django project on my personal laptop. Then I cloned the project to my work laptop and I'm getting a very weird error when I try to run any command, such as pytho

Solution 1:

Add project to your INSTALLED_APPS in settings.py file

settings.py

    INSTALLED_APPS = [
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.messages',
        'django.contrib.staticfiles',
        'project',
    ]

Post a Comment for "Django: No Module Named 'project'"