Skip to content

Instantly share code, notes, and snippets.

@mikoscz
Last active October 25, 2021 12:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikoscz/4d2a0052d4cdaaa027bc8a8d6af1e817 to your computer and use it in GitHub Desktop.
Save mikoscz/4d2a0052d4cdaaa027bc8a8d6af1e817 to your computer and use it in GitHub Desktop.
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