I see that elixir 1.14 is available, however, that latest version in the repo is not 1.14. Does anyone know the process or timeline of adding 1.14 to ubuntu repos so that it may be downloaded via apt-get
1 Like
I think you should ask ubuntu repository maintainers about this
If you want a specific version of elixir I’d advice not to use OS repos, but rather a version manager like asdf.
3 Likes
There is lot of options how to install it. Currently erlang 1.24 is already available, you can just.
- install erlang with apt
sudo apt install erlang
- git clone latest elixir from elixir
- I have it cloned inside /opt/elixir/
- then run
make clean test
inside that folder - add
export PATH="$PATH:/opt/elixir/bin"
to your rc file to make it permanent (ex. ~/.bashrc, ~/.zshrc) - close & open shell
- profit!
1 Like
So far I have always received the latest updates from Elixir via the package manager, but elixir have not yet been updated to 1.14. That’s why I tried to download elixir from the git repository and compile it, since erlang is fortunately up to date on ubuntu 18.04.
It’s really great how easy it is to install elixir, really impressive, thank’s a lot!!