-
-
Save crmaxx/c927e73316bc98e193b0 to your computer and use it in GitHub Desktop.
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