[Answer]-Django – Unable to import model

1👍

You probably need to add the project name to the Python path. Either in your wsgi.py file:

import sys
sys.path.insert(0, '/full/path/to/project/base')

or in your Apache configuration:

WSGIPythonPath /full/path/to/project/base

Leave a comment