I\'m following the Django tutorial https://docs.djangoproject.com/es/1.10/intro/tutorial01/
I\'ve created a \"mysite\" dummy project (my very first one) and try to
Also, the tutorial recommends that a virtual environment is used (see Django documentation: https://docs.djangoproject.com/en/2.0/topics/install/#installing-official-release"). You can do this with pipenv --three
. Once you've installed django with pipenv install django
and activated your virtual environment with pipenv shell
, python will refer to python3 when executing python manage.py runserver
.
Pipenv documentation: https://pipenv.kennethreitz.org/