Skip to main content

Make sure to do gowall -v and compare it against the release page version, since the docs only show the commands/flags and capabilities of the latest released version. You can find the currently released version here

Installation

MacOS (currently behind on v0.2.0)

A special thank you to chenrui333 for making this possible.

brew install gowall

Arch linux - AUR

yay -S gowall

NixOS - ( Maintainer : Emily Trau )

  environment.systemPackages = [
pkgs.gowall
];

More installation options : here

Fedora - COPR

sudo dnf copr enable achno/gowall
sudo dnf install gowall

Void Linux - XBPS-SRC ( Maintainer : elbachir-one )

Assuming you have void-packages

git clone https://github.com/elbachir-one/void-templates
cd void-templates/ && cp -r gowall/ void-packages/srcpkgs/
cd void-packages/
./xbps-src pkg gowall
sudo xbps-install -R hostdir/binpkgs gowall

Grab the binary from the release section (Stable Release)

Head over to the release section

Choose the latest version of gowall. You should see a .tar.gz for your operating system and architecture. Simply Extract the binary inside and place it inside your $PATH

sudo cp gowall /usr/local/bin/

Build from source (Cutting Edge)

🔨 Clone the repo, build the project and move it inside your $PATH

git clone https://github.com/Achno/gowall
cd gowall
go build
sudo cp gowall /usr/local/bin/
gowall

Go install

if you have $GOPATH setup correctly Eg. you have the following in your .zshrc / .bashrc

export GOPATH=$(go env GOPATH)
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOBIN

And simply use go install

go install github.com/Achno/gowall@latest