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.
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
-
Download
conjure_1.1.0_Windows_x86_64.zipfrom the downloads page. -
Extract the archive:
$installDir = "$env:LOCALAPPDATA\Programs\conjure"
Expand-Archive -Path conjure_1.1.0_Windows_x86_64.zip -DestinationPath $installDir
- 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.
- Verify the installation:
conjure --version
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
-
Download
conjure_1.1.0_Linux_x86_64.tar.gzfrom the downloads page. -
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
- Ensure
~/.local/binis on your PATH. Add the following to your~/.bashrcor~/.zshrcif it is not already there:
export PATH="$HOME/.local/bin:$PATH"
Then reload your shell or open a new terminal.
- Verify the installation:
conjure --version
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
-
Download
conjure_1.1.0_Linux_arm64.tar.gzfrom the downloads page. -
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
- Ensure
~/.local/binis on your PATH. Add the following to your~/.bashrcor~/.zshrcif it is not already there:
export PATH="$HOME/.local/bin:$PATH"
Then reload your shell or open a new terminal.
- Verify the installation:
conjure --version
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
-
Download
conjure_1.1.0_Darwin_arm64.tar.gzfrom the downloads page. -
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
- Ensure
~/.local/binis 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.
- If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine ~/.local/bin/conjure
- Verify the installation:
conjure --version
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
-
Download
conjure_1.1.0_Darwin_x86_64.tar.gzfrom the downloads page. -
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
- Ensure
~/.local/binis 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.
- If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine ~/.local/bin/conjure
- Verify the installation:
conjure --version