Django Runserver

Asked

Viewed 161 times

0

Greetings Galera, Ando having a problem with the Django framework: initially could climb the server normally, but after a while, when running Manage.py, the server does not "go up" and the command line does not report any errors:

C:\Users\Deus.DEUS.002\PycharmProjects\untitled\mini_curso_django>manage.py runserver 8000
C:\Users\Deus.DEUS.002\PycharmProjects\untitled\mini_curso_django>

What could it be ? and how can I be solving this mistake ?

Obs: I already tried to reinstall Django and put localhost ip as parameters.

1 answer

0

You have to add the name python in the front. The whole command would look like this:

python manage.py runserver 8000

Or

python3 manage.py runserver 8000

Depending on your installed python version.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.