Skip to content

Instantly share code, notes, and snippets.

@malt3
Last active March 5, 2018 22:20
Show Gist options
  • Save malt3/18cd734cb6835af09ea0eccc2d44f1fa to your computer and use it in GitHub Desktop.
Save malt3/18cd734cb6835af09ea0eccc2d44f1fa to your computer and use it in GitHub Desktop.
#!/bin/sh
# Install dependencies
sudo yum groupinstall -y "Development Tools"
sudo yum install -y \
fop \
ncurses-devel \
openssl-devel \
*openjdk-devel \
unixODBC \
unixODBC-devel
# Download newest version of Erlang/OTP
# replace this with the newest version
# look at https://www.erlang.org/downloads
wget https://www.erlang.org/download/otp_src_20.2.tar.gz
tar -xzf opt_src_*.tar.gz
cd otp_src_20.2
# Configure and make
./otp_build autoconf
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment