Passa al contenuto principale Passa alla navigazione Passa al piè di pagina
Programma Design Partner: iscriviti gratis, piano BUSINESS per sempre

Installa Rediacc CLI

Scegli il metodo di installazione preferito

Cerchi le app desktop o i binari diretti? Visita la pagina Download →

Introduzione

Nuovo su Rediacc? Inizia dalle basi e apprendi i concetti fondamentali.

Open Docs Quick Start

Download diretto

Binario autonomo, nessun gestore di pacchetti necessario

bash
# Linux x64
curl -fsSL https://releases.rediacc.com/cli/stable/rdc-linux-x64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# Linux ARM64
curl -fsSL https://releases.rediacc.com/cli/stable/rdc-linux-arm64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# macOS (Apple Silicon)
curl -fsSL https://releases.rediacc.com/cli/stable/rdc-mac-arm64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# macOS (Intel)
curl -fsSL https://releases.rediacc.com/cli/stable/rdc-mac-x64 -o rdc
chmod +x rdc && sudo mv rdc /usr/local/bin/

# Windows x64 (PowerShell) - installs to standard location
$installDir = "$env:LOCALAPPDATA\rediacc\bin"; New-Item -ItemType Directory -Force -Path $installDir | Out-Null
Invoke-WebRequest -Uri https://releases.rediacc.com/cli/stable/rdc-win-x64.exe -OutFile "$installDir\rdc.exe"
# Add to PATH: [Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$installDir", "User")

# Windows ARM64 (PowerShell) - installs to standard location
$installDir = "$env:LOCALAPPDATA\rediacc\bin"; New-Item -ItemType Directory -Force -Path $installDir | Out-Null
Invoke-WebRequest -Uri https://releases.rediacc.com/cli/stable/rdc-win-arm64.exe -OutFile "$installDir\rdc.exe"
# Add to PATH: [Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$installDir", "User")

Docker

Per ambienti containerizzati

bash
# Pull the image
docker pull ghcr.io/rediacc/elite/cli:stable

# Run a command
docker run --rm ghcr.io/rediacc/elite/cli:stable --version

# Create an alias for convenience
alias rdc='docker run --rm -it -v $(pwd):/workspace ghcr.io/rediacc/elite/cli:stable'

APT (Debian / Ubuntu)

Per Debian, Ubuntu e derivate

bash
curl -fsSL https://releases.rediacc.com/apt/stable/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/rediacc.gpg
echo "deb [signed-by=/usr/share/keyrings/rediacc.gpg] https://releases.rediacc.com/apt/stable stable main" | sudo tee /etc/apt/sources.list.d/rediacc.list
sudo apt-get update && sudo apt-get install rediacc-cli

DNF (Fedora / RHEL)

Per Fedora, RHEL, CentOS, Rocky Linux

bash
sudo curl -fsSL https://releases.rediacc.com/rpm/stable/rediacc.repo -o /etc/yum.repos.d/rediacc.repo
sudo dnf install rediacc-cli

APK (Alpine Linux)

Per Alpine Linux e derivate

sh
# Add the repository
echo "https://releases.rediacc.com/apk/stable" | sudo tee -a /etc/apk/repositories

# Install (unsigned repo -- use --allow-untrusted)
sudo apk update
sudo apk add --allow-untrusted rediacc-cli

Pacman (Arch Linux)

Per Arch Linux e derivate

bash
# Add the repository to /etc/pacman.conf
echo "[rediacc]
SigLevel = Optional TrustAll
Server = https://releases.rediacc.com/archlinux/stable/\$arch" | sudo tee -a /etc/pacman.conf

# Install
sudo pacman -Sy rediacc-cli

Homebrew (macOS / Linux)

Per utenti macOS e Linux con Homebrew

bash
brew install rediacc/tap/rediacc-cli

Verifica l'installazione

bash
rdc --version

Architetture supportate

Metodo Piattaforma x86_64 / amd64 ARM64 / aarch64
Installazione rapida Linux
macOS
Windows
Download diretto Linux
macOS
Windows
APT (.deb) Linux
DNF (.rpm) Linux
APK (.apk) Linux (Alpine)
Pacman (.pkg.tar.zst) Linux (Arch)
Homebrew macOS / Linux
Docker Linux / macOS / Windows