Skip to content

Instantly share code, notes, and snippets.

@sorawit
Last active April 1, 2020 16:56
Show Gist options
  • Save sorawit/6be5c8cc56143ec41307476ead166a4d to your computer and use it in GitHub Desktop.
Save sorawit/6be5c8cc56143ec41307476ead166a4d 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-rc/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-rc/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-rc
# commit: d4db67208389fa267207a4091e32579ff7e998aa
# 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