I want to install Django 1.7 via pip. It is currently a development version, so not in pips repositories.
So I have installed packages from github before using:
pip install git+[url here]
Now looking at github, I get the clone url on the django page:
https://github.com/django/django.git
But this mentions nothing of the branch. How do I specify that I want version 1.7? Is it somewhere obvious on the github page?
How do I Install a Specific Version of a Python Package? To install a specific version of a Python package you can use pip: pip install YourPackage==YourVersion . For example, if you want to install an older version of Pandas you can do as follows: pip install pandas==1.1. 3 .
You can deploy Git locally, or use it via a hosted service, such as Github, Gitlab or Bitbucket. One of the advantages of using pip together with Git is to install the latest commits of unreleased Python packages as branches from Github.
Specify the branch, commit hash, or tag name after an @
at the end of the url:
pip install git+https://github.com/django/[email protected]
This will install the version tagged with 1.7b3
.
Reference: https://pip.pypa.io/en/latest/reference/pip_install.html#git
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With