python - Pip install does not fetch the latest version -
i want install latest django-froala-editor
version.
but pip install
keeps installing django-froala-editor
version 2.0.1.
steps reproduce problem.
(using virtualenvwrapper ease test)
mktmpenv pip search froala pip install django-froala-editor
the version 2.0.1
gets installed, though 2.3.2
present on pypi website , pip search shows 2.1.0
version.
os.
os x yosemity 10.10.5, pip version 8.1.2, python 2.7
install directly git
if can't latest version pypi:
pip install git+https://github.com/froala/django-froala-editor
this can included in requirements.txt git+https://github.com/froala/django-froala-editor
generally,
pip install git+{url repo}
Comments
Post a Comment