如何使用pip安装Django 1.5?

时间:2021-10-30 19:21:40

How to install Django 1.5 ? pip install django==1.5 not working.

如何安装Django 1.5? pip install django == 1.5无法正常工作。

Is Django1.5 a stable version?

Django1.5是稳定版吗?

1 个解决方案

#1


6  

No, as at 19 feb 2013 the latest version is 1.4.3. See the docs.

不,截至2013年2月19日,最新版本为1.4.3。查看文档。

If you do want 1.5 you can get it from github -

如果你想要1.5,你可以从github获得它 -

pip install -e git+https://github.com/django/django.git@1.5b2#egg=django

UPDATE

The latest current version (1.5.1 as at 7th June 2013) can be installed with

可以安装最新的当前版本(截至2013年6月7日的1.5.1)

pip install django

#1


6  

No, as at 19 feb 2013 the latest version is 1.4.3. See the docs.

不,截至2013年2月19日,最新版本为1.4.3。查看文档。

If you do want 1.5 you can get it from github -

如果你想要1.5,你可以从github获得它 -

pip install -e git+https://github.com/django/django.git@1.5b2#egg=django

UPDATE

The latest current version (1.5.1 as at 7th June 2013) can be installed with

可以安装最新的当前版本(截至2013年6月7日的1.5.1)

pip install django