-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Hi,
I am currently using this tutorial as the beginning of learning Django. And I just found that if Chapter 6 「安裝 Django」, if following the code in the post run pip install django==1.6.6 would cause some problems later when running python manage.py syncdb.
The reason is here. In short it's some problem with the python 3.5, which is the latest version of python now.
And the solution is quite easy. Just run pip install django at the beginning and install the latest version of django. The developer already notice the issue and have it here, later they fixed it in the newest version of django. So simply install the latest version would solve this immediately.
What's more, using the latest version of django is fine for this project you demo in the book.