mirror of https://github.com/rq/rq.git
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:
parent
42ca608d96
commit
6bfd47f735
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue