Skip to content
Advertisement

Django no module named ‘main’

I was working on a Django project on my PC, Then I created an application named “register” and I get a weird error when I try to run manage.py runserver: im using Python 3.8.3. this error occurs when i added forms for registration.

JavaScript

my settings.py:

JavaScript

Advertisement

Answer

I’m guessing that you didn’t configure your WSGI app as Django’s App engine looks for an app variable in a file named main.py. Here are two ways you can look at this:

Include your WSGI Application

You still can create a file named main.py that includes an app variable. You don’t need to write anything, just import it (let’s say your project name is projekt:

JavaScript

Adding a custom entrypoint

As in Google’s Appengine:

entrypoint: Optional. The command that is executed when your app starts. For your app to receive HTTP requests, entrypoint should contain a command which starts a web server that listens on the port specified by the PORT environment variable. If you do not specify an entrypoint, App Engine will configure and start the Gunicorn webserver.

A comparison between the default and your need:

JavaScript

More information on here. Reference.

Advertisement