Reputation: 23
i currently work on a project , i want to build it with django 3.0.2
python version 3.7
, but after running the server
python manage.py runserver
it will quit immediately when i try to access the admin
url without raise any error , and even i havn't do any changes in my new app ,and also tried django version 2x
it worked as i expected .
i tried to remove and reinstall django , but still give the same output ,
thanks for advice
Upvotes: 0
Views: 326
Reputation: 31404
You're very likely to be running into this issue:
Python 3.7 crashes after trying to visit admin page on Windows and MacOS.
The solution is to upgrade to Python version 3.7.1 or higher.
Upvotes: 1