Last active
April 30, 2023 13:30
-
-
Save toranb/93999c046d871c764f8db5f336dc2abe to your computer and use it in GitHub Desktop.
install asdf with elixir and erlang for ubuntu or popos
This file contains hidden or 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 apt install git | |
sudo apt install curl | |
sudo apt install build-essential | |
sudo apt install autoconf | |
sudo apt install m4 | |
sudo apt install libncurses5-dev | |
sudo apt install libssh-dev | |
sudo apt install unixodbc-dev | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.3 | |
echo '. $HOME/.asdf/asdf.sh' >> ~/.bashrc | |
echo '. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc | |
asdf plugin-add elixir | |
asdf plugin-add erlang | |
asdf install erlang 25.3 | |
asdf install elixir 1.14.4-otp-25 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment