Created
August 12, 2020 15:01
-
-
Save vans163/b1f21cde448e7cadabb2191ffbb16cf6 to your computer and use it in GitHub Desktop.
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
apt-get install build-essential autoconf libncurses-dev m4 libssl-dev xsltproc libxml2-utils unixodbc-dev | |
mkdir -p /root/source | |
git clone https://github.com/erlang/otp /root/source/otp | |
cd /root/source/otp && ./otp_build autoconf && ./configure --enable-lock-counter && make -j$(nproc) && make install | |
git clone https://github.com/elixir-lang/elixir.git /root/source/elixir | |
cd /root/source/elixir && make clean && make install | |
mix local.hex --force && mix local.rebar --force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment