Installation
How to install
Homebrew (macOS)
For macOS users, you can install using Homebrew:
Scoop (Windows)
For Windows users, you can install using Scoop:
Pre-compiled binaries
For users who prefer to install pre-compiled binaries, we provide pre-built executables for Windows, macOS, and Linux. These binaries are available on the Releases page of our GitHub repository.
Windows
To install pre-compiled binaries on Windows, follow these steps:
Prerequisites
PowerShell (pre-installed on Windows 10 and later)
Installation steps
Open a PowerShell prompt.
Set the execution policy to allow running local scripts if not already set:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Download and run the
install.ps1
script:Invoke-WebRequest -Uri "https://raw.githubusercontent.com/rocketblend/rocketblend/master/install.ps1" -OutFile "install.ps1" .\install.ps1
Restart your PowerShell or Command Prompt session for the updated
PATH
to take effect.
Linux and macOS
To install pre-compiled binaries on Linux or macOS, follow these steps:
Open a terminal window.
Download and run the
install.sh
script:
Source
For users wanting to install directly from source, you can use the go install
command:
This command will download the latest version of the rocketblend
source code and compile the binary for your platform. Ensure you have Go 1.19 or later installed on your system.
Last updated