I am very new to Elixir, and I am trying to run iex. When I type 'iex' in the command line, I get the following error:
Erlang/OTP 20 [erts-9.0.5] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async->threads:10] [hipe] [kernel-poll:false] [dtrace]
** (Mix) "mix" with no arguments must be executed in a directory with a >mix.exs file
Usage: mix [task]
Examples:
mix - Invokes the default task (current: "mix run")
mix new PATH - Creates a new Elixir project at the given path
mix help - Lists all available tasks
mix help TASK - Prints documentation for a given task
I am currently using Elixir 1.5.1/Erlang 20
Why is Elixir requiring a mix.exs file just to run the shell?