Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.48 KB

INSTALL.md

File metadata and controls

61 lines (41 loc) · 1.48 KB

ctlptl Installation Appendix

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.8.1"
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.8.1"
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.8.1"
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"