Newer pip install command from git (#1439)

* Newer pip install command from git

Updated cutting edge pip install command to use HTTPS rather than insecure git+git protocol, as recommended by pip documentation. This allows the command to work with pip >= 21.0.1

* Updated pip command in README
This commit is contained in:
James Cobb 2021-04-01 07:23:18 +01:00 committed by GitHub
parent 42ca608d96
commit 6bfd47f735
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ Simply use the following command to install the latest released version:
If you want the cutting edge version (that may well be broken), use this:
pip install -e git+https://github.com/nvie/rq.git@master#egg=rq
pip install git+https://github.com/nvie/rq.git@master#egg=rq
## Related Projects

View File

@ -85,7 +85,7 @@ Simply use the following command to install the latest released version:
If you want the cutting edge version (that may well be broken), use this:
pip install -e git+git@github.com:nvie/rq.git@master#egg=rq
pip install git+https://github.com/nvie/rq.git@master#egg=rq
## Project history