Skip to content

Installation

Setting up Condor is quick and straightforward. Follow these steps to get started:

Prerequisites

Ensure your system meets the following requirements:

  • Operating System: macOS, Linux, or Windows

Install via Package Managers

macOS/Linux (Homebrew)

Install Condor using Homebrew:

Terminal window
brew install condor

Windows (Scoop)

Install Condor using Scoop:

Terminal window
scoop install condor

Install via Go Get

If you have Go installed, you can use go get to install Condor:

Terminal window
go install condor.sh/...@latest

Install via Direct Download

You can also download the latest release of Condor from the official website:

Terminal window
curl -LO https://condor.sh/download/condor-latest

Make the binary executable:

Terminal window
chmod +x condor-latest

Move it to a directory in your system’s PATH:

Terminal window
mv condor-latest /usr/local/bin/condor

Verify Installation

Check that Condor is installed correctly by running:

Terminal window
condor --version

You should see the version of Condor displayed in your terminal.

Next Steps

Now that Condor is installed, you’re ready to write your first test.