Created
April 10, 2020 02:54
-
-
Save sorawit/e148f0c20db7dc43d7e4b63e9453aae7 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-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