Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save seymores/647bbeca01e254a63073c2bbbdf2269e to your computer and use it in GitHub Desktop.
Save seymores/647bbeca01e254a63073c2bbbdf2269e to your computer and use it in GitHub Desktop.
sudo yum groupinstall "Development Tools"
sudo yum install openssl-devel.x86_64
sudo yum install ncurses-devel
# Install latest Erlang
wget http://erlang.org/download/otp_src_20.3.tar.gz
tar xvfz otp_src_20.3.tar.gz
cd otp_src_20.3
make
sudo make install
# Install latest Elixir 1.6
wget https://github.com/elixir-lang/elixir/archive/v1.6.4.tar.gz
tar xvfz v1.6.4.tar.gz
cd elixir-1.6.4
make
sudo make install
mix local.hex
mix local.rebar
# As for Phoenix 1.3.2, it's part of your app's dep, so mix deps.get will do. ^___^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment