nobe4
nobe4

Reputation: 2842

Pip install does not fetch the latest version

I want to install the latest django-froala-editor version.

But pip install keeps installing the django-froala-editor version 2.0.1.

Steps to reproduce the problem.

(using virtualenvwrapper to ease the test)

mktmpenv
pip search froala
pip install django-froala-editor

The version 2.0.1 gets installed, even though the 2.3.2 is present on the pypi website and the pip search shows a 2.1.0 version.

screen shot 2016-06-13 at 10 40 41

OS.

OS X Yosemity 10.10.5, pip version 8.1.2, python 2.7

Upvotes: 0

Views: 2072

Answers (1)

Moses Koledoye
Moses Koledoye

Reputation: 78556

Install directly from git if you can't get the latest version from pypi:

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

This can be included in your requirements.txt as git+https://github.com/froala/django-froala-editor

Generally,

pip install git+{url to repo}

Upvotes: 1

Related Questions