How to install django 1.4

前端 未结 2 1905
谎友^
谎友^ 2021-02-15 16:36

When trying to download django through:

sudo pip uninstall django

However, this downloads the new version of django 1.5. How would I force down

2条回答
  •  孤城傲影
    2021-02-15 17:39

    This can be done by using this command

    sudo pip install django==1.4 #or any desired version.
    

    should work.

提交回复
热议问题