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