Created
June 3, 2011 10:29
-
-
Save samof76/1006146 to your computer and use it in GitHub Desktop.
Erlang Install Steps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mkdir /opt/erlang | |
sudo chown sam:sam -R /opt/erlang |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd erlang | |
wget http://www.erlang.org/download/otp_src_R14B02.tar.gz | |
mkdir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tar -xvf otp_src_R14B02.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd otp_src_R14B02 | |
./configure --prefix=/opt/erlang/R14B02 | |
make ; make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment