Last active
August 16, 2021 07:57
-
-
Save bobmoff/9a5affe7ff196155ebc82f72cf04df8d to your computer and use it in GitHub Desktop.
Install Elixir on Ubunti (Bash Script)
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
#!/bin/bash | |
wget https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb && sudo dpkg -i erlang-solutions_2.0_all.deb | |
sudo apt-get update | |
sudo apt-get install -y esl-erlang | |
sudo apt-get install -y elixir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment