jackypanster / erlang-setup-on-ubuntu

Set up the erlang runtime environment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to install erlang on ubuntu

  • Install dependencies
sudo apt-get install -y build-essential libncurses5-dev openssl libssl-dev fop xsltproc unixodbc-dev
  • Download source code of erlang
wget http://erlang.org/download/otp_src_19.2.tar.gz
tar zxvf otp_src_19.2.tar.gz
cd otp_src_19.2
  • Configurate and compile the source code of erlang
./configure && make && sudo make install
  • Verify
erl

About

Set up the erlang runtime environment