Last active
November 3, 2018 05:07
-
-
Save baketzforme/56a3ed0890921602e739d6bb40f2d34e to your computer and use it in GitHub Desktop.
Tezos Node on Raspberry Pi 3 B+
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
# Installing a Tezos node on a Raspberry Pi 3 B+ (running Raspbian (Debian Stretch) Minimal install from NOOBS Lite 2.8): | |
sudo apt-get install -y patch unzip make gcc m4 git g++ aspcud bubblewrap curl bzip2 rsync libgmp3-dev libev-dev libhidapi-dev fail2ban ntp | |
sh <(curl -sL https://raw.githubusercontent.com/ocaml/opam/561fb4759fa2184525d0c74bf7c3accbb1edd2dc/shell/install.sh) | |
opam init --compiler=4.06.1 | |
eval $(opam env) | |
git clone -b betanet https://gitlab.com/tezos/tezos.git | |
cd tezos | |
make build-deps | |
eval $(opam env) | |
make | |
./tezos-node identity generate 26 |
This does not work for me.
I get this error: "Makefile:11: *** Unexpected opam version (found: 2.0.0~rc3, expected: 2.0.0). Stop."
I used Raspian on a Pi 3B+
You need to edit tezos/scripts/version.sh
and change opam_version
from 2.0.0
to 2.0.0~rc3
:
-opam_version=2.0.0
+opam_version=2.0.0~rc3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This does not work for me.
I get this error: "Makefile:11: *** Unexpected opam version (found: 2.0.0~rc3, expected: 2.0.0). Stop."
I used Raspian on a Pi 3B+