Skip to main content

Install Vela

macOS

Homebrew

  1. Add Vela tap to your brew configuration
    brew tap go-vela/vela
  2. Update your taps
    brew update
  3. Install Vela CLI
    brew install vela

cURL

  1. Download the binary
    curl -L https://github.com/go-vela/cli/releases/latest/download/vela_darwin_amd64.tar.gz | tar zx
  2. Copy binary to $PATH
    sudo cp vela /usr/local/bin/

Linux

cURL

  1. Download the binary
    curl -L https://github.com/go-vela/cli/releases/latest/download/vela_darwin_amd64.tar.gz | tar zx
  2. Copy binary to $PATH
    sudo cp vela /usr/local/bin/

Windows

Command Prompt

  1. Download the binary
    curl -L https://github.com/go-vela/cli/releases/latest/download/vela_windows_amd64.tar.gz --output vela_windows_amd64.tar.gz
  2. Unzip the tarball
    tar xzvf vela_windows_amd64.tar.gz
  3. Copy binary to $PATH
    copy vela C:\Windows\System32/vela.exe

Windows PowerShell

  1. Download the binary
    curl https://github.com/go-vela/cli/releases/latest/download/vela_windows_amd64.tar.gz -OutFile vela_windows_amd64.tar.gz
  2. Unzip the tarball
    tar xzvf vela_windows_amd64.tar.gz
  3. Copy binary to $PATH
    cp vela C:\Windows\System32/vela.exe

PowerShell 6 (PowerShell Core)

  1. Download the binary
    curl https://github.com/go-vela/cli/releases/latest/download/vela_windows_amd64.tar.gz -OutFile vela_windows_amd64.tar.gz
  2. Unzip the tarball
    tar xzvf vela_windows_amd64.tar.gz
  3. Copy binary to $PATH
    cp vela C:\Windows\System32/vela.exe

Source

warning

This method is intended for developers and advanced users only.

Golang is required before continuing. To install and setup Golang, please review installation documentation

  1. Download the repo
    go get -d github.com/go-vela/cli
  2. Change to the cli directory
    cd ${GOPATH}/src/github.com/go-vela/cli
  3. Build a release binary with Go
    go build -o releases/vela
  4. Copy binary to $PATH
    sudo cp releases/vela /usr/local/bin/