Install 'uberboard CLI'
On Linux or MacOS the best way to install uberboard CLI
is by running the following command in your terminal:
curl -o- https://uberboard.io/install.sh | bash
This command downloads and runs the installation script from the official uberboard.io website, setting up the uberboard CLI tool on your system.
Alternative installation
Alternatively you can download the latest version of the CLI tool for your platform directly from here:
- MacOS (ARM) (opens in a new tab)
- MacOS (Intel) (opens in a new tab)
- Linux (ARM) (opens in a new tab)
- Linux (ARM 64-Bit) (opens in a new tab)
- Linux (Intel 64-Bit) (opens in a new tab)
- Windows (64-Bit) (opens in a new tab)
- Windows (x86) (opens in a new tab)
After extracting the files into a directory of your choice, you will need to add the directory to your system's PATH variable to ensure the executable can be found by your shell. Here's how you can do this on Windows, Linux, and MacOS:
Windows
- Right-click on 'This PC' or 'My Computer' and select 'Properties'.
- Click on 'Advanced system settings' and then 'Environment Variables'.
- Under 'System Variables', find the PATH variable and select it. Click 'Edit'.
- In the 'Edit Environment Variable' window, click 'New' and add the path to the directory where you extracted the files.
- Click 'OK' to close each window.
Linux and MacOS
-
Open a terminal.
-
Determine which shell you are using by running
echo $SHELL
. -
Based on your shell, edit the appropriate configuration file in your home directory (
~/.bashrc
,~/.zshrc
, etc.) by adding the following line:export PATH=$PATH:/path/to/your/directory
-
Replace
/path/to/your/directory
with the actual path to the directory where you extracted the files. -
Save the file and reload the configuration by running source
~/.bashrc
(or the equivalent for your shell).
By following these steps, you ensure that the uberboard
executable is accessible from anywhere in your terminal.