[Fixed]-Can't instal Django on RedHat

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

Leave a comment