[Django]-Django 2.1 startproject throws weird error

4👍

Django 2.1 is not supported on Python 3.4 – only 3.5, 3.6, and 3.7.

Release notes: https://docs.djangoproject.com/en/2.1/releases/2.1/

3👍

The python version you use is 3.4.3. But django==2.1 will install Django 2.1.

Django 2.1 supports Python 3.5, 3.6, and 3.7. Django 2.0 is the last version to support Python 3.4. We highly recommend and only officially support the latest release of each series.

Source Django 2.1 release notes

So, You need to install to resolve it

pip3 install Django==2.0.0

Leave a comment