Skip to content

Instantly share code, notes, and snippets.

@OndrejValenta
Last active June 19, 2020 23:45
Show Gist options
  • Save OndrejValenta/47c1e7fbef3bf66739e0f8b8efd1f84c to your computer and use it in GitHub Desktop.
Save OndrejValenta/47c1e7fbef3bf66739e0f8b8efd1f84c to your computer and use it in GitHub Desktop.
Install Erlang on Centos8
# Install Epel repository
yum install epel-release -y
# Install necessary libraries for Erlang compilation
yum install gcc gcc-c++ glibc-devel make ncurses-devel openssl-devel autoconf java-1.8.0-openjdk-devel git wget wxBase3 libGL libGLU unixODBC wxGTK3 wxGTK3-gl -y
# Download Erlang package (update to proper package version)
wget https://packages.erlang-solutions.com/erlang/rpm/centos/8/x86_64/esl-erlang_23.0.2-1~centos~8_amd64.rpm
# Install Erlang
rpm -Uvh esl-erlang_23.0.2-1~centos~8_amd64.rpm
# Try Erlang
erl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment