Last active
February 10, 2017 06:15
-
-
Save jeongho/60ed3a25f7bc5af990cb29607fdb1328 to your computer and use it in GitHub Desktop.
erlang install with erlang-solutions distro
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
#https://www.erlang-solutions.com/resources/download.html | |
#READ Installation using repository | |
#http://elixir-lang.org/install.html#raspberry-pi | |
# verify installation | |
which erl | |
/usr/local/bin/erl | |
# check version | |
erl -eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshell | |
# get erlang key | |
echo "deb http://packages.erlang-solutions.com/debian jessie contrib" | sudo tee /etc/apt/sources.list.d/erlang-solutions.list | |
wget http://packages.erlang-solutions.com/debian/erlang_solutions.asc | |
sudo apt-key add erlang_solutions.asc | |
# update package list | |
sudo apt-get update | |
# Install Erlang & Elixir | |
sudo apt-get install erlang elixir -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment