I am trying to use a Django package that is only compatible with Django 1.8, so I think I need to downgrade the current project from 1.9 to 1.8. What would be the best course to achieve this?
To downgrade Django to the latest version in version 1.8 of the series:
pip install "Django~=1.8.0"
This syntax ~ = means installing the latest version of the point version, which is backward compatible with 1.8. During recording, this one v1.8.18, however, must be released v1.8.19later, then the command shown above will select it.
v1.8.18
v1.8.19
For a list of what is deprecated in 1.9, you should read the release notes here:
https://docs.djangoproject.com/en/1.10/releases/1.9/
Source: https://habr.com/ru/post/1657200/More articles:Can a Redux Store Lead a Memory Leak? - memory-leaksUWP support for opengl - c ++Marshalling "EGLRenderResolutionScaleProperty" for ANGLE from C # using P / Invoke - c #Why do I see strange index behavior on scalars? - listHow to detect jenkins build trigger in jenkinsfile to start building after another job - jenkins-pipelineAngular2 - Add Json with file - javascriptJava - How to double only vowels - javaWhy does `set_index` create an index label for the column name? - pythonHow to get Arabic month names using Excel VBA - vbaПонимание синтаксиса для массива кортежей в Swift - arraysAll Articles