This guide provides steps to download and install our released binaries from the drosera-network/releases (you are here) repo on GitHub.
curlinstalled (for downloading binaries)tarinstalled (for extracting binaries if they are compressed)- Basic command line knowledge
-
Download the Binary
Use
curlto download the binary from the GitHub release page. You can get the web link by copying the link from the Releases page of the release you are trying to install binaries from.# Using curl curl -L https://web-link-to-release-tarball -
Unarchive the Binary Use tar to unarchive and unzip the file. The file to untar will depend on the binary you downloaded in the previous step
tar xzvf name-of-binary.tar.gz
-
Installing the Binary Use
chmodto make the file executablechmod +x name-of-binary
-
Move the binary to a location in the system PATH Use
mvorcpto mv the binary. This may require sudo and a privileged user. If you wish to place the executable binary in a different location, you will need to confirm that the location is part of the$PATHvariable.mv operator /usr/bin/
Note: Windows users must use WSL or Git-Bash to utilize the droseraup utility.
curl https://raw.githubusercontent.com/drosera-network/releases/main/droseraup/install | bash- Checkout our Official Docs for configuring and running these binaries on your system.