Skip to content

Instantly share code, notes, and snippets.

@pmembrey
Created October 27, 2012 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmembrey/3963286 to your computer and use it in GitHub Desktop.
Save pmembrey/3963286 to your computer and use it in GitHub Desktop.
Installing Erlang on RHEL
yum groupinstall 'Development Tools'
yum install ncurses-devel openssl-devel
wget http://www.erlang.org/download/otp_src_R15B02.tar.gz
tar -zxvf otp_src_R15B02.tar.gz
cd otp_src_R15B02
./configure --prefix=/opt/otpr15b02
make
make install
export PATH=/opt/otpr15b02/bin/:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment