Elixir's IEx and Mix tooling, on Windows, comes with some batch scripts (.bat
) and PowerShell scripts (.ps1
) that handle these tooling applications. For example, you can run
PS > (Get-Command mix.ps1).Path
C:\Program Files (x86)\Elixir\bin\mix.ps1
to see where these scripts are located, if they are in your path already. The Elixir Winows installer does put these in your path if you select it (I think there's a selection at least, from memory).
So out of the gate, you need to run iex.bat
and mix.bat
to run these commands for Elixir, which can be problematic. See the steps below to get rid of this requirement.