I\'m really new in programming and I wanted to follow the Djangogirls tutorial, but I\'m stucked now. In the tutorial, I am here:
To create a database
The Django Girls tutorial version in English has just switched to Django 2.0 which should make it compatible to Python 3.7. (Django 2.0 includes a backport of the fix mentioned in Ry-'s answer.)
So everyone beginning the tutorial now should be fine with Python 3.7.
If you've already begun the tutorial you'd have to start again at the Django installation chapter. You'll want to do that in a new directory (either delete or rename your current djangogirls
directory or choose a different name for the new directory) as the files generated by
django-admin print startproject mysite .
depend on the Django version in use.
Also, upgrading Django solved my problem
On your terminal,
$ pip install -U Django
or see here