Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save taylor/9902080 to your computer and use it in GitHub Desktop.
Save taylor/9902080 to your computer and use it in GitHub Desktop.
Installing Erlang with kerl and Elixir with kiex on Fedora 19

Install basic dev env tools/libs

yum install -y vim-enhanced tmux
yum groupinstall 'Development Tools' -y
yum install -y ncurses-devel ncurses

Setup kerl

curl -O https://raw.github.com/spawngrid/kerl/master/kerl
chmod +x kerl
mv kerl /usr/local/bin

Build and activate erlang

kerl build R16B03-1 r16b03-1

Install kiex and add to path

curl -qs https://raw.github.com/taylor/kiex/master/install | bash -s
test -s "$HOME/.kiex/scripts/kiex" && source "$HOME/.kiex/scripts/kiex"

Install and activate/use and elixir

kiex install 0.12.5
kiex use 0.12.5

Done:

➔  elixir -v
Elixir 0.12.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment