Created
December 20, 2014 13:20
-
-
Save nathanjohnson320/ab233a7a426d10eb1746 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Install elixir raspberry pi, from http://suranyami.com/post/80056047551/installing-elixir-on-raspberry-pi | |
# Add the new repo | |
sudo echo 'deb http://packages.erlang-solutions.com/debian wheezy contrib' >> /etc/apt/sources.list | |
# Get the key | |
wget http://packages.erlang-solutions.com/debian/erlang_solutions.asc | |
sudo apt-key add erlang_solutions.asc && rm erlang_solutions.asc | |
# Get erlang | |
sudo apt-get update | |
sudo apt-get install -y erlang-mini | |
# Get elixir | |
git clone https://github.com/elixir-lang/elixir.git | |
cd elixir | |
make clean test | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment