当我尝试安装django 1.4时,它给了我1.5:
imac9:site-packages pdadmin$ sudo pip install django==1.4.1
Downloading/unpacking django==1.4.1
Running setup.py egg_info for package django
warning: no previously-included files matching '__pycache__' found under directory '*'
warning: no previously-included files matching '*.py[co]' found under directory '*'
Requested django==1.4.1, but installing version 1.5.1
Installing collected packages: django
Found existing installation: Django 1.5.1
我该如何解决这个问题?
答案 0 :(得分:2)
您可能已经拥有更新版本。
Found existing installation: Django 1.5.1
我想你应该先卸载那个。
答案 1 :(得分:2)
我建议使用virtualenv。这样,您的1.4和1.5安装可以在不同的环境中和平共存(无论如何,它更适合分发/部署)。我目前在两个独立的项目中运行1.4.1和1.5。
答案 2 :(得分:0)
我能解决这个问题的唯一方法是下载1.4 tar并手动安装它。