Installing Erlang by source

From Notes_Wiki
Revision as of 09:15, 9 April 2024 by Saurabh (talk | contribs)

Home > Erlang > Erlang installation > Installing Erlang by source

  1. Download the source and latest man packages from Erlang sites
  2. Install required dependencies:
    dnf -y install gcc ncurses-devel openssl-libs openssl-devel java java-1.8.0-openjdk-devel gcc-c++ byacc bison unixODBC unixODBC-devel
  3. Extract the sources and install via:\
    ./configure; make; make install
    Ignore warning related to wxwidgets and fop
  4. Test by opening
    erl
    q().

Home > Erlang > Erlang installation > Installing Erlang by source