Installation
For macOS users
Install via Homebrew
brew tap southbanksoftware/proofable
brew install proofable-cli
Later on, you can upgrade to the latest version using: brew upgrade proofable-cli
Install directly
Copy and paste the following bash command in a macOS Terminal:
bash -c "$(eval "$(if [[ $(command -v curl) ]]; then echo "curl -fsSL"; else echo "wget -qO-"; fi) https://raw.githubusercontent.com/SouthbankSoftware/proofable/master/cmd/proofable-cli/install.sh")"
Then hit return to run, which will install the latest proofable-cli
binary into /usr/local/bin
. Then you can use the CLI as:
proofable-cli -h
If you want to install the latest dev (cutting edge) binary, using:
ENV=dev bash -c "$(eval "$(if [[ $(command -v curl) ]]; then echo "curl -fsSL"; else echo "wget -qO-"; fi) https://raw.githubusercontent.com/SouthbankSoftware/proofable/master/cmd/proofable-cli/install.sh")"
To upgrade, simply repeat the installation steps
For Linux users
Install via Homebrew
brew tap southbanksoftware/proofable
brew install proofable-cli
Later on, you can upgrade to the latest version using: brew upgrade proofable-cli
Install directly
Copy and paste the following bash command in a Linux shell prompt:
sudo bash -c "$(eval "$(if [[ $(command -v curl) ]]; then echo "curl -fsSL"; else echo "wget -qO-"; fi) https://raw.githubusercontent.com/SouthbankSoftware/proofable/master/cmd/proofable-cli/install.sh")"
Then hit return to run, which will install the latest proofable-cli
binary into /usr/local/bin
. Then you can use the CLI as:
proofable-cli -h
If you want to install the latest dev (cutting edge) binary, using:
sudo ENV=dev bash -c "$(eval "$(if [[ $(command -v curl) ]]; then echo "curl -fsSL"; else echo "wget -qO-"; fi) https://raw.githubusercontent.com/SouthbankSoftware/proofable/master/cmd/proofable-cli/install.sh")"
To upgrade, simply repeat the installation steps
For Windows users
Install directly
Copy and paste the following PowerShell command in a PowerShell prompt:
& ([ScriptBlock]::Create((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/SouthbankSoftware/proofable/master/cmd/proofable-cli/install.ps1')))
Then hit return to run, which will install the latest proofable-cli.exe
binary into your current directory. Then you can use the CLI as:
.\proofable-cli.exe -h
If you want to install the latest dev (cutting edge) binary, using:
& ([ScriptBlock]::Create((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/SouthbankSoftware/proofable/master/cmd/proofable-cli/install.ps1'))) "dev"
To upgrade, simply repeat the installation steps
Install directly in Windows Subsystem for Linux (WSL)
Follow the same steps for Linux users
Build your own binary
- make sure the latest golang is installed
- clone this repo
cd cmd/proofable-cli && make