Start: Install Pebble binary
Visit the latest release page to determine the latest tag, for example,
v1.12.0
.Run the following command to download the file. Make sure to replace
v1.12.0
with the latest tag andamd64
with your architecture.wget https://github.com/canonical/pebble/releases/download/v1.12.0/pebble_v1.12.0_linux_amd64.tar.gz
Extract the contents of the downloaded file by running:
tar zxvf pebble_v1.12.0_linux_amd64.tar.gz
Install the Pebble binary. Make sure the installation directory is included in your system’s
PATH
environment variable.sudo mv pebble /usr/local/bin/
End: Install Pebble binary