I am Getting Could not compile dependency :unicode_util_compat after adding httpoison deps
defp deps do
[
{:httpoison, "~> 2.0"}
]
end
I put {:httpoison, “~> 2.0”} and ran the mix deps.get. It works fine. After I give iex -S mix It throws
Erlang/OTP 25 [erts-13.1.4] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit:ns]
escript: exception error: undefined function rebar3:main/1
in function escript:run/2 (escript.erl, line 750)
in call from escript:start/1 (escript.erl, line 277)
in call from init:start_em/1
in call from init:do_boot/3
** (Mix) Could not compile dependency :unicode_util_compat, "/home/dzine-hub/.mix/rebar3 bare compile --paths /var/www/html/Elixir/task_demo/_build/dev/lib/*/ebin" command failed. Errors may have been logged above. You can recompile this dependency with "mix deps.compile unicode_util_compat", update it with "mix deps.update unicode_util_compat" or clean it with "mix deps.clean unicode_util_compat"
Can anyone Help?
Thanks!