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.
๐คRob L
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.