[Answer]-No module named pages.urls

1👍

After going through the installtion process several times I worked out that because I was using ‘sudo’ it was installing on the server and not inside the virtualenv!

So when you install the app you need to Install it without sudo, otherwise it will install outside of the virtualenv!

0👍

Did you included the application in your settings.py file in the section called

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.admin',
    'django.contrib.sites',
    'mptt',
    'tagging',
    'pages',      # You have to include it here      
)

Leave a comment