Skip to content

Instantly share code, notes, and snippets.

@jmingov
Forked from konradko/golang_on_rpi.md
Last active March 22, 2019 02:45
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmingov/f74ef0c38c8d3ceea0577a9149e14dfd to your computer and use it in GitHub Desktop.
Save jmingov/f74ef0c38c8d3ceea0577a9149e14dfd to your computer and use it in GitHub Desktop.
Install Golang 1.8.1 on Raspberry Pi
wget https://storage.googleapis.com/golang/go1.8.1.linux-armv6l.tar.gz
sudo tar -C /usr/local -xzf go1.8.1.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin
wget https://nodejs.org/dist/v7.10.0/node-v7.10.0-linux-armv7l.tar.xz 
tar -xvf node-v7.10.0-linux-armv7l.tar.xz
cd node-v7.10.0-linux-armv7l
sudo cp -R * /usr/local/

TFT DISPLAY apt..

xserver-xorg
xinit
xserver-xorg-video-fbdev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment