0

I'm trying to set up a repo locally but facing an issue i.e python manage.py runserver command gets aborted as soon as I hit localhost URL (http://127.0.0.1:8000/)

error - [1] 7398 abort python manage.py runserver

Django version 1.6.6 Python 2.7 OS -> MacOS Catalina (10.15.3) Database postgres (PostgreSQL) 12.2

Harshit Sharma
  • 99
  • 1
  • 1
  • 11

2 Answers2

1

first why ur using old version python and Django. that's first because they didn't have support so I strongly recommend you to upgrade newest versions

DevGUL
  • 19
  • 6
0

I think this is due to Python & Catalina incompatibility. Try using Python 3.7. Similar question

In general, try to avoid using Python 2.x. Insted use Python 3.7.x.

Rasul Kireev
  • 369
  • 1
  • 2
  • 16