Skip to content

Install#

Auto Install#

Recommended method to install. Also installs sb2gs and backpack.

Unix#

curl -fsSL https://raw.githubusercontent.com/aspizu/goboscript/refs/heads/main/install.sh | sh

Windows#

iwr https://raw.githubusercontent.com/aspizu/goboscript/refs/heads/main/install.ps1 | iex

Install from source#

This installs the latest bleeding-edge version from the git repository. You will need git, and the rust toolchain installed.

git clone https://github.com/aspizu/goboscript
cd goboscript
cargo install --path .

To update the installation:

cd goboscript
git pull
cargo install --path .

Install from source (using cargo)#

This installs the latest bleeding-edge version from the git repository with a single command.

cargo install --git https://github.com/aspizu/goboscript

To update the installation:

cargo install --git https://github.com/aspizu/goboscript --force