Installation
Chimera supports Linux, macOS, and Windows. It can be installed via Cargo, precompiled binaries, or Debian packages. Follow the steps below based on your platform.
cargo install chimera-cli
Using Precompiled Binary
Section titled “Using Precompiled Binary”Windows
Section titled “Windows”# Download the latest releaseInvoke-WebRequest -Uri "https://github.com/AMS003010/Chimera/releases/latest/download/chimera-windows.exe.zip" -OutFile "chimera-windows.zip"
# Extract the zip fileExpand-Archive -Path "chimera-windows.zip" -DestinationPath "."
# Rename the binaryRename-Item chimera-windows.exe chimera-cli.exe
# Run chimera.\chimera-cli.exe --path data.json http
# Download and extract the latest Linux binarycurl -sL https://github.com/AMS003010/Chimera/releases/latest/download/chimera-linux.zip -o chimera-linux.zip
# Unzip itunzip chimera-linux.zip
# Give it executable permissionschmod +x chimera-linux
# Rename itmv chimera-linux chimera-cli
# Chimera is ready to use ✨./chimera-linux --path data.json
# Download and extract the latest macOS binarycurl -sL https://github.com/AMS003010/Chimera/releases/latest/download/chimera-macos.zip -o chimera-macos.zip
# Unzip itunzip chimera-macos.zip
# Give it executable permissionschmod +x chimera-macos
# Rename itmv chimera-macos chimera-cli
# Chimera is ready to use ✨./chimera-cli --path data.json http
Debian Package (Ubuntu/Debian)
Section titled “Debian Package (Ubuntu/Debian)”# Download the latest .deb packagecurl -s https://api.github.com/repos/AMS003010/Chimera/releases/latest | jq -r '.assets[] | select(.name | endswith("_amd64.deb")) | .browser_download_url' | xargs wget
# Install the packagesudo dpkg -i chimera-cli_*_amd64.deb
# Chimera is ready to use ✨chimera-cli --path data.json http
Build from source
Section titled “Build from source”# Clone the repohttps://github.com/AMS003010/Chimera.git
# Move to cloned repocd Chimera
# Build the executablecargo install --path .
# Chimera is ready to use ✨chimera-cli --path data.json http
Downloads
Section titled “Downloads”Download the latest release for your platform.
OS | Arch | Current (0.6.9) | Previous (0.6.2) | ||
---|---|---|---|---|---|
Linux | x86_64 | 0.6.9 | 0.6.2 | ||
Windows | x86_64 | 0.6.9 | 0.6.2 | ||
macos | x86_64 | 0.6.9 | 0.6.2 | ||
Debian | x86_64 | 0.6.9 | 0.6.2 |