Skip to content

Files

Latest commit

 

History

History
72 lines (46 loc) · 1.69 KB

INSTALLATION.md

File metadata and controls

72 lines (46 loc) · 1.69 KB

Installation

Windows

Installation script

This will download a binary from the latest GitHub release.

Invoke-RestMethod "https://raw.githubusercontent.com/spenserblack/gengo/main/install.ps1" | Invoke-Expression

If you get an error regarding execution policy, please read the error carefully and determine the execution policy that is right for you. You may try re-running the installation script if you have updated the execution policy.

Scoop

gengo is installable via Scoop. See the Scoop manifest.

scoop install https://raw.githubusercontent.com/spenserblack/gengo/main/scoop/gengo.json

Unix

Installation script

This will download a binary from the latest GitHub release. This will activate sudo to write the executable. Please review the install script before running it.

curl https://raw.githubusercontent.com/spenserblack/gengo/main/install.sh | sh

Arch Linux

gengo is available as an AUR package. It can be installed using an AUR helper (e.g. paru):

paru -S gengo

Universal

From GitHub Releases

Download the appropriate file from a release.

With cargo

The following installs the gengo binary.

cargo install gengo-bin

Docker

You can build a docker image and run it as well.

docker build -t gengo .
docker run --rm -v $(pwd):$(pwd) -w $(pwd) -t gengo

Or pull it from the GitHub Container Registry.