The contents are almost all by the entry name, but I will explain it briefly.
Let's take a quick look at Python Django, so let's proceed by referring to Introduction to Python Django.
You should have a newer version of Python! After installing Python 3.5 (Windows) somehow
pip install django==1.7.1
Install django version 1.7.1, but it works so far
django-admin.py startproject mysite
When I tried to create a new project, I got an error and nothing was created.
To see this area http://www.thefourtheye.in/2015/02/python-35-and-django-17s-htmlparseerror.html
It seems that django1.7.1 does not support Python3.5. After installing django 1.8.5, which seems to be the latest version, I was able to create a project successfully.
Recommended Posts