ctlptl Installation Appendix
June 4, 2026 ยท View on GitHub
Recommended
Homebrew (Mac/Linux)
brew install tilt-dev/tap/ctlptl
Scoop (Windows)
scoop bucket add tilt-dev https://github.com/tilt-dev/scoop-bucket
scoop install ctlptl
Alternative
Docker
Available on Docker Hub as tiltdev/ctlptl
Contains the most recent version of kind and ctlptl for use in CI environments.
Point and click
Visit the releases page and download the pre-build binaries for your architecture.
Go install
For global installation with go use the following command:
go install github.com/tilt-dev/ctlptl/cmd/ctlptl@latest
Command-line
On macOS:
CTLPTL_VERSION="0.9.4"
curl -fsSL https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.mac.x86_64.tar.gz | sudo tar -xzv -C /usr/local/bin ctlptl
On Linux:
CTLPTL_VERSION="0.9.4"
curl -fsSL https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.linux.x86_64.tar.gz | sudo tar -xzv -C /usr/local/bin ctlptl
On Windows:
$CTLPTL_VERSION = "0.9.4"
Invoke-WebRequest "https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.windows.x86_64.zip" -OutFile "ctlptl.zip"
Expand-Archive "ctlptl.zip" -DestinationPath "ctlptl"
Move-Item -Force -Path "ctlptl\ctlptl.exe" -Destination "$home\bin\ctlptl.exe"