Built from main at e8111a4 on 2026-04-14 08:03 UTC.
The commands below show how to install the nightly version of uncloud.
Warning: These are nightly development builds and may be unstable.
Install uncloud CLI:
curl -fsS https://get.uncloud.run/install.sh | VERSION=nightly sh
Initialize a cluster or add a machine:
uc machine init --version nightly user@host
uc machine add --version nightly user@host
Upgrade machine daemon:
ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
curl -fsSL -o uncloudd.tar.gz https://github.com/psviderski/uncloud/releases/download/nightly/uncloudd_linux_${ARCH}.tar.gz
tar -xf uncloudd.tar.gz
sudo install uncloudd /usr/local/bin/uncloudd
rm uncloudd uncloudd.tar.gz
sudo systemctl restart uncloud