Installing the Zeet CLI
macOS (Homebrew)
Using Homebrew:
brew install zeet-dev/tap/zeet
Linux, macOS (Github Releases)
First, download the latest release for your system:
# for armv6, use zeet_0.6.0_armv6.tar.gz
# for arm64, use zeet_0.6.0_linux_arm64.tar.gz
wget https://github.com/zeet-dev/cli/releases/download/v0.6.0/zeet_0.6.0_linux_x86_64.tar.gz
Then, extract the file:
tar -xf ./zeet_0.6.0_linux_x86_64.tar.gz
Finally, move the binary into your path:
mv ./zeet /usr/local/bin
Windows (Github Releases)
Download the latest release, run the following in PowerShell:
Invoke-WebRequest https://github.com/zeet-dev/cli/releases/download/v$0.6.0/zeet_$0.6.0_windows_x86_64.zip -OutFile ~\zeet_$0.6.0_windows_x86_64.zip
Then, extract the binary:
Expand-Archive -Path ~\zeet_$0.6.0_windows_x86_64.zip
Finally, open a PowerShell window with administrator access, and move the binary into your system's PATH by running:
New-Item -ItemType Directory $env:ProgramFiles\zeet\
Move-Item -Path ~\zeet_0.6.0_windows_x86_64\zeet.exe -Destination $env:ProgramFiles\zeet\
[Environment]::SetEnvironmentVariable(
"Path",
[Environment]::GetEnvironmentVariable("Path",
[EnvironmentVariableTarget]::Machine) + ";$env:ProgramFiles\zeet\",
[EnvironmentVariableTarget]::Machine)
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine")
Next steps
To login to the Zeet CLI, check out Authenticating