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

Option 1: Install script (recommended)

Open PowerShell and run:

irm https://raw.githubusercontent.com/WizardOpsTech/conjure/main/install.ps1 | iex

The script installs conjure to %LOCALAPPDATA%\Programs\conjure and adds it to your PATH automatically. Restart your terminal when it finishes.

Option 2: Manual install

  1. Download conjure_1.1.0_Windows_x86_64.zip from the downloads page.

  2. Extract the archive:

$installDir = "$env:LOCALAPPDATA\Programs\conjure"
Expand-Archive -Path conjure_1.1.0_Windows_x86_64.zip -DestinationPath $installDir
  1. Add the directory to your PATH:
$installDir = "$env:LOCALAPPDATA\Programs\conjure"
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$installDir", "User")

Restart your terminal for the PATH change to take effect.

  1. Verify the installation:
conjure --version

Linux

Linux x86_64

Option 1: Install script (recommended)

curl -sfL https://raw.githubusercontent.com/WizardOpsTech/conjure/main/install.sh | sh

The script installs conjure to ~/.local/bin. If that directory is not yet on your PATH, the script will print the exact line to add to your shell profile.

Option 2: Manual install

  1. Download conjure_1.1.0_Linux_x86_64.tar.gz from the downloads page.

  2. Extract and install:

mkdir -p ~/.local/bin
tar -xzf conjure_1.1.0_Linux_x86_64.tar.gz -C ~/.local/bin/ conjure
chmod +x ~/.local/bin/conjure
  1. Ensure ~/.local/bin is on your PATH. Add the following to your ~/.bashrc or ~/.zshrc if it is not already there:
export PATH="$HOME/.local/bin:$PATH"

Then reload your shell or open a new terminal.

  1. Verify the installation:
conjure --version

Linux arm64

Option 1: Install script (recommended)

curl -sfL https://raw.githubusercontent.com/WizardOpsTech/conjure/main/install.sh | sh

The script detects your architecture automatically and installs conjure to ~/.local/bin.

Option 2: Manual install

  1. Download conjure_1.1.0_Linux_arm64.tar.gz from the downloads page.

  2. Extract and install:

mkdir -p ~/.local/bin
tar -xzf conjure_1.1.0_Linux_arm64.tar.gz -C ~/.local/bin/ conjure
chmod +x ~/.local/bin/conjure
  1. Ensure ~/.local/bin is on your PATH. Add the following to your ~/.bashrc or ~/.zshrc if it is not already there:
export PATH="$HOME/.local/bin:$PATH"

Then reload your shell or open a new terminal.

  1. Verify the installation:
conjure --version

macOS

Darwin arm64

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

Option 1: Install script (recommended)

curl -sfL https://raw.githubusercontent.com/WizardOpsTech/conjure/main/install.sh | sh

The script detects your architecture automatically and installs conjure to ~/.local/bin.

Option 2: Manual install

  1. Download conjure_1.1.0_Darwin_arm64.tar.gz from the downloads page.

  2. Extract and install:

mkdir -p ~/.local/bin
tar -xzf conjure_1.1.0_Darwin_arm64.tar.gz -C ~/.local/bin/ conjure
chmod +x ~/.local/bin/conjure
  1. Ensure ~/.local/bin is on your PATH. Add the following to your ~/.zshrc (or ~/.bashrc) if it is not already there:
export PATH="$HOME/.local/bin:$PATH"

Then reload your shell or open a new terminal.

  1. If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine ~/.local/bin/conjure
  1. Verify the installation:
conjure --version

Darwin x86_64

For Intel-based Macs.

Option 1: Install script (recommended)

curl -sfL https://raw.githubusercontent.com/WizardOpsTech/conjure/main/install.sh | sh

The script detects your architecture automatically and installs conjure to ~/.local/bin.

Option 2: Manual install

  1. Download conjure_1.1.0_Darwin_x86_64.tar.gz from the downloads page.

  2. Extract and install:

mkdir -p ~/.local/bin
tar -xzf conjure_1.1.0_Darwin_x86_64.tar.gz -C ~/.local/bin/ conjure
chmod +x ~/.local/bin/conjure
  1. Ensure ~/.local/bin is on your PATH. Add the following to your ~/.zshrc (or ~/.bashrc) if it is not already there:
export PATH="$HOME/.local/bin:$PATH"

Then reload your shell or open a new terminal.

  1. If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine ~/.local/bin/conjure
  1. Verify the installation:
conjure --version

Next Steps