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.
-
Download
conjure_VERSION_Windows_x86_64.zipfrom the downloads page. -
Extract the archive:
Expand-Archive -Path conjure_VERSION_Windows_x86_64.zip -DestinationPath C:\conjure
- 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")
- Verify the installation:
conjure --version
-
Download
conjure_VERSION_Linux_x86_64.tar.gzfrom the downloads page. -
Extract and install:
- Verify the installation:
conjure --version
-
Download
conjure_VERSION_Linux_arm64.tar.gzfrom the downloads page. -
Extract and install:
- Verify the installation:
conjure --version
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"
For Apple Silicon Macs (M1, M2, M3, M4).
-
Download
conjure_VERSION_Darwin_arm64.tar.gzfrom the downloads page. -
Extract and install:
tar -xzf conjure_VERSION_Darwin_arm64.tar.gz
sudo mv conjure /usr/local/bin/
sudo chmod +x /usr/local/bin/conjure
- If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine /usr/local/bin/conjure
- Verify the installation:
conjure --version
For Intel-based Macs.
-
Download
conjure_VERSION_Darwin_x86_64.tar.gzfrom the downloads page. -
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
- If macOS blocks the binary, remove the quarantine attribute:
xattr -d com.apple.quarantine /usr/local/bin/conjure
- Verify the installation:
conjure --version