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
The solution is straightforward. the exception from manage.py is because when running the command with python, Django is unable to predict the exact python version, say you may have 3.6, 3.5, 3.8 and maybe just one of this versions pip module was used to install Django to resolve this either use:
./manage.py `enter code here`
or using the exact python version(x.x) stands:
pythonx.x manage.py
else the use of virtual environments can come in handy because its relates any pip django module easily to python version