Last active
December 20, 2015 00:59
-
-
Save mdespuits/6045525 to your computer and use it in GitHub Desktop.
Install Erlang on Mac OS X
This file contains 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
#!/bin/sh | |
# | |
# Script built from the reference at | |
# http://digitalsanctum.com/2009/10/01/installing-erlang-on-mac-os-x/ | |
sudo -v | |
wget http://www.erlang.org/download/otp_src_R16B01.tar.gz | |
tar -xzf otp_src_R16B01.tar.gz | |
cd otp_src_R16B01 | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment