Skip to content

Instantly share code, notes, and snippets.

@zramsay
Last active June 12, 2016 19:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save zramsay/146e88f95cf46da4a149c0f8db9edd30 to your computer and use it in GitHub Desktop.
installing eris on ARM platforms

way 1 (from source):

go get github.com/eris-ltd/eris-cli
cd $GOPATH/src/github.com/eris-ltd/eris-cli
git fetch origin develop
git checkout develop
go install ./cmd/eris
eris init

way 2 (binary):

curl https://eris-iot-repo.s3.amazonaws.com/eris-deb/APT-GPG-KEY | sudo apt-key add - 
echo "deb https://eris-iot-repo.s3.amazonaws.com/eris-deb {DIST} experimental" | sudo tee /etc/apt/sources.list.d/eris.list 
 
apt-get update 
apt-get install eris
eris init

replace {DIST} with the debian destribution (e.g. "jessie")

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