Skip to main content

Installation

caution

The CLI for Wolebase is currently in alpha testing. It is not yet ready for production use and may change in the future. We appreciate your support and feedback as we work to make the CLI stable and reliable for everyone.

You can download and install the Wolebase CLI manually or programmatically (with a script or the command line).

On Windows

Run the following commands in PowerShell to install the Wolebase CLI for Windows. This will download an install script and run it. The install script creates a %USERPROFILE%\AppData\Local\Microsoft\WindowsApps directory if it doesn't exist yet, then installs a wolebase binary there.

iwr https://raw.githubusercontent.com/wolebase/cli-releases/main/install.ps1 -useb | iex

On POSIX systems (Linux, MacOS)

This will download an install script and run it. The install script creates a /usr/local/bin directory if it doesn't exist yet, then installs a wolebase binary there.

curl -fsSL https://raw.githubusercontent.com/wolebase/cli-releases/main/install.sh | sh -

If you don't have curl installed, you would like to use wget:

wget -qO- https://raw.githubusercontent.com/wolebase/cli-releases/main/install.sh | sh -