Hello all,
I’m trying to start my server by running mix phx.server but I get this in the terminal
No version is set for command mix
Consider adding one of the following versions in your config file at
elixir 1.14.2-otp-25
elixir 1.14.4-otp-25
So after some research, I tried to add the version number in the mix.exs file by doing this
def project do
[
# ...
elixir: "1.14.4-otp-25",
# ...
]
end
But still no luck, no iex, mix, or elixir commands in the terminal work, I would really appreciate some help.