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:
brew install condorWindows (Scoop)
Install Condor using Scoop:
scoop install condorInstall via Go Get
If you have Go installed, you can use go get to install Condor:
go install condor.sh/...@latestInstall via Direct Download
You can also download the latest release of Condor from the official website:
curl -LO https://condor.sh/download/condor-latestMake the binary executable:
chmod +x condor-latestMove it to a directory in your system’s PATH:
mv condor-latest /usr/local/bin/condorVerify Installation
Check that Condor is installed correctly by running:
condor --versionYou 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.