Skip to content

Instantly share code, notes, and snippets.

@sorawit
Created April 10, 2020 02:54
Show Gist options
  • Save sorawit/e148f0c20db7dc43d7e4b63e9453aae7 to your computer and use it in GitHub Desktop.
Save sorawit/e148f0c20db7dc43d7e4b63e9453aae7 to your computer and use it in GitHub Desktop.
# Install bandd, change its permission, and move to /usr/local/bin
wget -O bandd https://github.com/bandprotocol/bandchain/releases/download/v0.2.0-rc2/bandd_linux_amd64
chmod +x bandd
sudo mv bandd /usr/local/bin
# Install bandcli, change its permission, and move to /usr/local/bin
wget -O bandcli https://github.com/bandprotocol/bandchain/releases/download/v0.2.0-rc2/bandcli_linux_amd64
chmod +x bandcli
sudo mv bandcli /usr/local/bin
# Check that the correction version of bandd and bandcli is installed
bandd version --long
bandcli version --long
# Both should show:
# name: bandchain
# server_name: bandd
# client_name: bandcli
# version: 0.2.0-rc2
# commit: a86c08da6d80982cbb344aaafe867b330de6a2e7
# build_tags: ""
# go: go version go1.13.4 linux/amd64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment