Created
March 8, 2014 00:34
-
-
Save jfreeze/9423233 to your computer and use it in GitHub Desktop.
Installing Elixir on Raspberry Pi
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
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