Installation
Voraussetzungen
Installation
Automatischer Installer
Die Verwendung des automatisches Installers automatisiert den Prozess des Herunterladens und Verschiebens der Polycrate CLI in Ihren $PATH
. Der automatische Installer erkennt automatisch Ihr Betriebssystem und Ihre System-Architektur.
curl https://raw.githubusercontent.com/polycrate/polycrate/main/get-polycrate.sh | bash
Nach Abschluss des Installations-Vorgangs können Sie mit polycrate version
prüfen, ob alles korrekt funktioniert hat.
Manueller Download
Die aktuellen Versionen der Polycrate CLI finden Sie im Polycrate Hub. Dort können Sie dir CLI entweder direkt herunterladen oder den Vorgang mit folgenden Kommandos für Ihr jeweiliges Betriebssystem aus der Kommandozeile durchführen:
Linux amd64
export VERSION=0.19.0
curl -fsSLo polycrate.tar.gz https://github.com/polycrate/polycrate/releases/download/v$VERSION/polycrate_$VERSION_linux_amd64.tar.gz
tar xvzf polycrate.tar.gz
chmod +x polycrate
./polycrate version
Linux arm64
export VERSION=0.19.0
curl -fsSLo polycrate.tar.gz https://github.com/polycrate/polycrate/releases/download/v$VERSION/polycrate_$VERSION_linux_arm64.tar.gz
tar xvzf polycrate.tar.gz
chmod +x polycrate
./polycrate version
macOS Intel
export VERSION=0.19.0
curl -fsSLo polycrate.tar.gz https://github.com/polycrate/polycrate/releases/download/v$VERSION/polycrate_$VERSION_darwin_amd64.tar.gz
tar xvzf polycrate.tar.gz
chmod +x polycrate
./polycrate version
macOS M1
export VERSION=0.19.0
curl -fsSLo polycrate.tar.gz https://github.com/polycrate/polycrate/releases/download/v$VERSION/polycrate_$VERSION_darwin_arm64.tar.gz
tar xvzf polycrate.tar.gz
chmod +x polycrate
./polycrate version