Pip安装不会获取最新版本

时间:2016-06-13 10:02:50

标签: python django pip froala

我想安装最新的django-froala-editor版本。

但是pip install会继续安装django-froala-editor版本2.0.1。

重现问题的步骤。

(使用virtualenvwrapper来简化测试)

mktmpenv
pip search froala
pip install django-froala-editor

版本2.0.1已安装,即使2.3.2present on the pypi website且点子搜索显示2.1.0版本。

screen shot 2016-06-13 at 10 40 41

OS。

OS X Yosemity 10.10.5, pip版本8.1.2, python 2.7

1 个答案:

答案 0 :(得分:1)

如果您无法从pypi获取最新版本,请直接从git安装:

pip install git+https://github.com/froala/django-froala-editor

这可以作为git+https://github.com/froala/django-froala-editor

包含在您的requirements.txt中

一般来说,

pip install git+{url to repo}