1
can I choose the version of Django that I install?
You can. Use pip install Django==1.4.3
for example, to install a specific version.
Or pip install "Django<1.9"
to get the latest stable 1.8
build.
Source:stackexchange.com
1
can I choose the version of Django that I install?
You can. Use pip install Django==1.4.3
for example, to install a specific version.
Or pip install "Django<1.9"
to get the latest stable 1.8
build.