-
Download the installer from https://elixir-lang.org/install.html#windows
- Erlang OTP needs to installed SEPARATELY from: https://www.erlang.org/downloads.html
Add to your shell initialization scripts (~/.bashrc
or ~/.bash_profile
or ~/.zshrc
) the following...
export PATH="</path/to/erlangotp/installation>/bin:$PATH"
export PATH="</path/to/elixir/installation>/bin:$PATH"
P.S. You can check which shell you are using by running echo $SHELL
.
You would have to Edit your "Environment Variables". Refer: How to set environment variables
-
Ensure that
</path/to/erlangotp/installation>/bin
is added to the%PATH%
variable. -
Ensure that
</path/to/elixir/installation>/bin
is added to the%PATH%
variable.
Restart your
git bash
and verify the steps 1 and 2 again.