Install Conjure from Binary

Download and install a prebuilt Conjure binary for your platform.

Download the appropriate binary for your platform from the downloads page, then follow the instructions below.

Windows

Windows x86_64

  1. Download conjure_VERSION_Windows_x86_64.zip from the downloads page.

  2. Extract the archive:

Expand-Archive -Path conjure_VERSION_Windows_x86_64.zip -DestinationPath C:\conjure
  1. Add the directory to your PATH:
# Add to current session
$env:PATH += ";C:\conjure"

# Add permanently (requires restart of terminal)
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";C:\conjure", "User")
  1. Verify the installation:
conjure --version

Linux

Linux x86_64

  1. Download conjure_VERSION_Linux_x86_64.tar.gz from the downloads page.

  2. Extract and install:

  1. Verify the installation:
conjure --version

Linux arm64

  1. Download conjure_VERSION_Linux_arm64.tar.gz from the downloads page.

  2. Extract and install:

  1. Verify the installation:
conjure --version

Alternative: Install to User Directory

If you do not have root access, install to a local directory instead:

mkdir -p ~/.local/bin
tar -xzf conjure_VERSION_Linux_x86_64.tar.gz -C ~/.local/bin/
chmod +x ~/.local/bin/conjure

Ensure ~/.local/bin is on your PATH by adding this to your ~/.bashrc or ~/.zshrc:

export PATH="$HOME/.local/bin:$PATH"

macOS

Darwin arm64

For Apple Silicon Macs (M1, M2, M3, M4).

  1. Download conjure_VERSION_Darwin_arm64.tar.gz from the downloads page.

  2. Extract and install:

tar -xzf conjure_VERSION_Darwin_arm64.tar.gz
sudo mv conjure /usr/local/bin/
sudo chmod +x /usr/local/bin/conjure
  1. If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine /usr/local/bin/conjure
  1. Verify the installation:
conjure --version

Darwin x86_64

For Intel-based Macs.

  1. Download conjure_VERSION_Darwin_x86_64.tar.gz from the downloads page.

  2. Extract and install:

tar -xzf conjure_VERSION_Darwin_x86_64.tar.gz
sudo mv conjure /usr/local/bin/
sudo chmod +x /usr/local/bin/conjure
  1. If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine /usr/local/bin/conjure
  1. Verify the installation:
conjure --version

Next Steps