How to install elixir and erlang in RPI
The official guide in elixir site is not up-to-date.
Install Erlang (extract from https://elinux.org/Erlang)
sudo apt-get update
sudo apt-get install wget
sudo apt-get install libssl-dev
sudo apt-get install ncurses-dev
wget http://www.erlang.org/download/otp_src_24.0.tar.gz
tar -xzvf otp_src_24.0.tar.gz
cd otp_src_24.0/
./configure
make
sudo make install
cd ..
rm otp_src_24.0.tar.gz
sudo rm -R otp_src_24.0/
Install Elixir from source:
wget…