Skip to content

Instantly share code, notes, and snippets.

@arno01
Last active October 3, 2021 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arno01/bec4569fcb5056d36aa6e67e57638660 to your computer and use it in GitHub Desktop.
Save arno01/bec4569fcb5056d36aa6e67e57638660 to your computer and use it in GitHub Desktop.

Get Akash 0.14 binary from the following link

https://github.com/ovrclk/akash/releases


Build Akash

You do not have to build it from sources anymore! It's now available here https://github.com/ovrclk/akash/releases

apt purge golang-go
apt autoremove

rm -rf /usr/local/go
wget -c https://golang.org/dl/go1.17.1.linux-amd64.tar.gz
tar xvf go1.17.1.linux-amd64.tar.gz -C /usr/local

# Update environment variables to include go
cat >> ~/.profile << 'EOF'
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF

source ~/.profile
$ go version
go version go1.17.1 linux/amd64
git clone https://github.com/ovrclk/akash.git
cd akash
git checkout -b tag-v0.14.0-rc1 v0.14.0-rc1
make
# binary compiles as: .cache/bin/akash
@arno01
Copy link
Author

arno01 commented Sep 28, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment