Skip to content

Instantly share code, notes, and snippets.

@dtaperik
Forked from bryanhunter/install-r14b03.sh
Created May 15, 2012 16:29
Show Gist options
  • Save dtaperik/2703068 to your computer and use it in GitHub Desktop.
Save dtaperik/2703068 to your computer and use it in GitHub Desktop.
Script to install Erlang 14B03 (tested on a fresh Ubuntu 11.04 install)
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxgtk2.8-dev libglu1-mesa-dev fop xsltproc default-jdk
mkdir -p /src/erlang
cd /src/erlang
wget http://www.erlang.org/download/otp_src_R14B03.tar.gz
tar -xvzf otp_src_R14B03.tar.gz
chmod -R 777 otp_src_R14B03
cd otp_src_R14B03
./configure
make
make install
@dtaperik
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment