Skip to content

Instantly share code, notes, and snippets.

@nathanjohnson320
Created December 20, 2014 13:20
Show Gist options
  • Save nathanjohnson320/ab233a7a426d10eb1746 to your computer and use it in GitHub Desktop.
Save nathanjohnson320/ab233a7a426d10eb1746 to your computer and use it in GitHub Desktop.
# 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