Skip to content

Instantly share code, notes, and snippets.

@tusqasi
Created September 14, 2022 03:16
Show Gist options
  • Save tusqasi/a01e668d3786c9ade709b79d52abc25a to your computer and use it in GitHub Desktop.
Save tusqasi/a01e668d3786c9ade709b79d52abc25a to your computer and use it in GitHub Desktop.
Elixir and erlang installation for eyantra
sudo apt-get install build-essential git wget libssl-dev libreadline-dev libncurses5-dev zlib1g-dev m4 curl wx-common libwxgtk3.0-dev autoconf libxml2-utils xsltproc fop unixodbc unixodbc-bin unixodbc-dev
# installation of asdf
cd
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.7.4
# For Ubuntu or other linux distros
echo '. $HOME/.asdf/asdf.sh' >> ~/.bashrc
echo '. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc
# Installing plugins for asdf
asdf plugin-add erlang
asdf plugin-add elixir
asdf install erlang 22.0.7
asdf install elixir 1.9.1-otp-22
asdf global erlang 22.0.7
asdf global elixir 1.9.1-otp-22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment