Installation
The Arconia CLI can be installed using various package managers or directly from the released binaries. Support for these operating systems and architectures is provided:
-
Linux (x86_64 and ARM64)
-
macOS (ARM64)
-
Windows (x86_64).
Manual Installation
Download the appropriate binary for your operating system from the latest Arconia CLI release. Then, follow the instructions below to install it on your system.
macOS and Linux
-
Move the downloaded binary to a directory in your system PATH:
mv ~/Downloads/arconia-[version]-[os]/bin/ /usr/local/bin/
-
Make the binary executable:
chmod +x /usr/local/bin/arconia
Windows
Run the following commands in PowerShell with administrator privileges:
# Create a directory for Arconia CLI
New-Item -ItemType Directory -Path "$env:ProgramFiles\arconia-cli" -Force
# Move the executable to the new directory
Move-Item -Path "$env:USERPROFILE\Downloads\arconia-[version]-[os]\bin\arconia.exe" -Destination "$env:ProgramFiles\arconia-cli\arconia.exe"
# Add the new directory to the system PATH
$currentPath = [Environment]::GetEnvironmentVariable("Path", "Machine")
$newPath = "$currentPath;$env:ProgramFiles\arconia-cli"
[Environment]::SetEnvironmentVariable("Path", $newPath, "Machine")
# Refresh the current PowerShell session's PATH
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")