Reputation: 2842
I want to install the latest django-froala-editor
version.
But pip install
keeps installing the django-froala-editor
version 2.0.1.
(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.
OS X Yosemity 10.10.5, pip version 8.1.2, python 2.7
Upvotes: 0
Views: 2072
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