-
-
Save alvinlai/1457dac3dce51a432a0b877bbe2d66f8 to your computer and use it in GitHub Desktop.
Installing erlang in ubuntu
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/bash | |
# installing erlang on ubuntu's | |
VERSION="18.2.1" | |
sudo apt-get install build-essential libncurses5-dev openssl libssl-dev | |
sudo mkdir -p /opt/erlang/ | |
cd /usr/local/bin/ | |
sudo curl -O https://raw.githubusercontent.com/kerl/kerl/master/kerl && chmod a+x kerl | |
kerl update releases | |
kerl build ${VERSION} ${VERSION} | |
sudo kerl install ${VERSION} /opt/erlang/${VERSION} | |
sudo ln -s /opt/erlang/${VERSION} /opt/erlang/current | |
cd /usr/local/bin | |
sudo find /opt/erlang/current/bin -exec ln -s '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment