Skip to content

Instantly share code, notes, and snippets.

@mortymacs
Created August 29, 2017 05:22
Show Gist options
  • Select an option

  • Save mortymacs/3f4b01f48202aca08c7741a0d989d85b to your computer and use it in GitHub Desktop.

Select an option

Save mortymacs/3f4b01f48202aca08c7741a0d989d85b to your computer and use it in GitHub Desktop.
Install Erlang From Source code Wothout wx and doc

Requirements

$ apt-get install libncurses5-dev

Manually

$ wget -c http://erlang.org/download/otp_src_19.3.tar.gz
$ tar xzf otp_src_19.3.tar.gz
$ cd otp_src_19.3/
./configure --without-wx --without-odbc --without-documentation --disable-odbc --disable-wx --disable-documentation
$ make
$ make install

Using Kerl

$ curl -O https://raw.githubusercontent.com/kerl/kerl/master/kerl
$ chmod a+x kerl
$ ./kerl build 19.3 19.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment