LoginSignup
0
0

More than 5 years have passed since last update.

Install Erlang on EC2

Posted at

Install Erlang on EC2

Source Link
http://www.erlang.org/download.html

$ sudo yum install gcc gcc-c++ glibc-devel make ncurses-devel openssl-devel autoconf java-1.8.0-openjdk-devel unixODBC unixODBC-devel fop
$ cd /usr/local/src/
$ sudo wget http://www.erlang.org/download/otp_src_18.0.tar.gz
$ sudo tar -zxf otp_src_18.0.tar.gz
$ cd otp_src_18.0
$ export ERL_TOP=`pwd`
$ sudo ./configure
$ sudo make
$ sudo make install
$ erl
Erlang/OTP 18 [erts-7.0] [source] [64-bit] [async-threads:10] [hipe] [kernel-poll:false]

Eshell V7.0  (abort with ^G)
1>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0