Skip to content

Instantly share code, notes, and snippets.

@mikoscz
Last active October 25, 2021 12:56
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Install elixir with asdf-vm mac os
  1. brew install asdf
echo -e '\n. $(brew --prefix asdf)/asdf.sh' >> ~/.zshrc
echo -e '\n. $(brew --prefix asdf)/etc/bash_completion.d/asdf.bash' >> ~/.zshrc
brew install \
  coreutils automake autoconf openssl \
  libyaml readline libxslt libtool unixodbc
  1. asdf plugin-add erlang https://github.com/asdf-vm/asdf-erlang.git
  2. asdf install erlang 21.3
  3. asdf global erlang 21.3
  4. asdf plugin-add elixir https://github.com/asdf-vm/asdf-elixir.git
  5. asdf install elixir ref:v1.8.1
  6. asdf global elixir ref:v1.8.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment