Installing the Pachyderm command-line interface
The Pachyderm CLI, pachctl
, is used to deploy and interact with Pachyderm clusters. Follow these steps to install pachctl
:
- Let's get the latest release version tag of
pachctl
and keep it in a variable calledPACHYDERMVERSION
:$ PACHYDERMVERSION=$(curl --silent "https://api.github.com/repos/pachyderm/pachyderm/releases/latest" | grep '"tag_name":' | \ sed -E 's/.*"v([^"]+)".*/\1/')
- Execute the following commands to install
pachctl
on your computer.
If you are using macOS, run the following command:
$ brew tap pachyderm/tap && brew install pachyderm/tap/pachctl@${PACHYDERMVERSION}
If you are using Debian Linux or WSL on Windows 10, run the following command:
$ curl -o /tmp/pachctl.deb -L https://github.com/pachyderm/pachyderm/releases/download/v${PACHYDERMVERSION}/pachctl_${PACHYDERMVERSION}_amd64.deb && sudo dpkg -i /tmp/pachctl.deb...