Installation
How to install
Homebrew (macOS)
For macOS users, you can install using Homebrew:
$ brew tap "rocketblend/homebrew-tap"
$ brew install rocketblendScoop (Windows)
For Windows users, you can install using Scoop:
scoop bucket add rocketblend "https://github.com/rocketblend/scoop-bucket"
scoop install "rocketblend/rocketblend"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 CurrentUserDownload and run the
install.ps1script:Invoke-WebRequest -Uri "https://raw.githubusercontent.com/rocketblend/rocketblend/master/install.ps1" -OutFile "install.ps1" .\install.ps1Restart your PowerShell or Command Prompt session for the updated
PATHto take effect.
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/rocketblend/rocketblend/master/install.ps1" -OutFile "install.ps1"
.\install.ps1Linux and macOS
To install pre-compiled binaries on Linux or macOS, follow these steps:
Open a terminal window.
Download and run the
install.shscript:
$ curl -LO "https://raw.githubusercontent.com/rocketblend/rocketblend/master/install.sh"
$ chmod +x install.sh
$ ./install.shSource
For users wanting to install directly from source, you can use the go install command:
$ go install github.com/rocketblend/rocketblend/cmd/rocketblend@latestThis command will download the latest version of the rocketblend source code and compile the binary for your platform. Ensure you have Go 1.23.X or later installed on your system.
Last updated