Last active
April 10, 2018 16:33
-
-
Save seymores/647bbeca01e254a63073c2bbbdf2269e to your computer and use it in GitHub Desktop.
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
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