I am trying to follow the Django tutorial and I faced the following error when I enter python manage.py makemigrations polls
Django
python manage.py makemigrations polls
Unknown co
Find out what version of django you're running (thanks @BradyEmerson):
python -c "import django; print(django.get_version())"
If older than 1.8:
pip install --upgrade django