Skip to content

Instantly share code, notes, and snippets.

@jfreeze
Created March 8, 2014 00:34
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jfreeze/9423233 to your computer and use it in GitHub Desktop.
Save jfreeze/9423233 to your computer and use it in GitHub Desktop.
Installing Elixir on Raspberry Pi
My quick notes on what I did to install Elixir on the Raspberry Pi.
All the info is here, but it's a self guided tour.
# Get Raspbian
http://www.raspberrypi.org/downloads
http://downloads.raspberrypi.org/raspbian_latest
# Copy raspbian.img file to th SD Card
diskutils unmountDisk /dev/disk<numberhere>
dd if=/yourimagefile of=/dev/disk<numberhere>
# Boot the Pi
# Update OS
http://www.debian.org/doc/manuals/debian-faq/ch-uptodate.en.html
http://raspberrypi.stackexchange.com/questions/4020/how-do-i-upgrade-raspbian
# List packages
dpkg --get-selections | grep -v deinstall
# Install Erlang
erlang-mini
http://www.erlang-embedded.com/
# Install Elixir Build Tools
exenv
https://github.com/mururu/exenv
elixir-build
https://github.com/mururu/elixir-build
# Build Elixir
exenv install 0.12.4
exenv global 0.12.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment