There are many different ways to install rq
, listed from most preferred
to least preferred.
TODO: this section will soon be updated!
- Generic (Up to date, fast)
- Cargo (Stable releases, slow)
- GitHub releases (Stable releases, fast)
- Arch Linux (Up to date, fast)
- Mac OS X (Out of date, slow)
- Nix (Up to date, slow)
There is a generic best-effort installer available via the dreaded
curl | bash
method. This is the preferred method, because you don't
need to compile rq
from scratch, and you always get the latest
version.
curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git dflemstr/rq
There is a crate available on crates.io, so just run:
cargo install record-query
There are tagged releases of rq
fairly infrequently. You can
download pre-built binaries from the
GitHub releases page. Note
that these might be very out of date compared to master
.
There is an official package in the [community] repository:
pacman -S rq
There is a Homebrew tap available. Add it like this:
brew tap dflemstr/tools
This will let you install the latest version of rq
(recommended):
brew install --HEAD rq
Note that the compilation might take some time, use -v
for details.
If you for some reason want the last tagged release of rq
(might be
severely out of date):
brew install rq
rq
is available in nixpkgs. You can install it via nix-env
:
nix-env -i rq
Or add to packages list if you use Home Manager:
home.packages = [ pkgs.rq ]