Skip to content

Instantly share code, notes, and snippets.

@mdespuits
Last active December 20, 2015 00:59
Show Gist options
  • Save mdespuits/6045525 to your computer and use it in GitHub Desktop.
Save mdespuits/6045525 to your computer and use it in GitHub Desktop.
Install Erlang on Mac OS X
#!/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