Last active
April 1, 2020 16:56
-
-
Save sorawit/6be5c8cc56143ec41307476ead166a4d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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