Installation

gw is a simple few MB binary, which you can install multiple ways.

Install from script #

The simplest way is to run the installation script:

curl https://gw.danielgrants.com/install.sh | sh

This will download the script to ~/.local/bin or if run by root to /usr/local/bin.

Download from GitHub releases #

Another way is to download the zipped binary from Github Releases and install it to your path:

curl -LO https://github.com/daniel7grant/gw/releases/download/v0.3.2/gw-bin_x86_64-unknown-linux-gnu.zip
unzip gw-bin_x86_64-unknown-linux-gnu.zip
mv gw ~/.local/bin/gw
rm gw-bin_x86_64-unknown-linux-gnu.zip

Install with Cargo #

If you have Rust on your machine, you can also install the gw binary with Cargo. Use cargo-binstall for a faster install or cargo install will build it from source.

cargo binstall gw-bin
# or
cargo install gw-bin