The Ocuroot client is provided as an open source tool that provides you with everything you need to run Ocuroot-enabled releases from your CI platform of choice.
brew install ocuroot/tap/ocuroot
Note: Check the releases page to find the latest version number and available architectures.
Download and install the .deb
package from the releases page:
# Download the package (replace $VERSION and $ARCH as needed)
wget https://github.com/ocuroot/ocuroot/releases/download/v$VERSION/ocuroot_$VERSION_$ARCH.deb
# Install the package
sudo dpkg -i ocuroot_$VERSION_$ARCH.deb
# Fix dependencies if needed
sudo apt-get install -f
Download and install the .rpm
package from the releases page:
# Download the package (replace $VERSION and $ARCH as needed)
wget https://github.com/ocuroot/ocuroot/releases/download/v$VERSION/ocuroot_$VERSION_$ARCH.rpm
# Install the package
sudo rpm -i ocuroot_$VERSION_$ARCH.rpm
# Or using dnf/yum
sudo dnf install ocuroot_$VERSION_$ARCH.rpm
You can use the excellent bin tool to install directly from the latest GitHub release:
bin install github.com/ocuroot/ocuroot
This automatically downloads the correct binary for your platform from the releases page.
If you have Go installed, you can build Ocuroot directly from the source repo:
go install github.com/ocuroot/ocuroot/cmd/ocuroot@latest