Я получаю приведенную ниже ошибку при запуске mix ecto.create
для создания базы данных postgres.
==> argon2_elixir
could not compile dependency :argon2_elixir, "mix compile" failed. You can recompile this dependency with "mix deps.compile argon2_elixir", update it with "mix deps.update argon2_elixir" or clean it with "mix deps.clean argon2_elixir"
==> snitch_core
** (Mix) "nmake" not found in the path. If you have set the MAKE environment variable,
please make sure it is correct.
Я определяю ее в файле mix.exs
в папке apps
, как показано ниже:
# auth
{:elixir_make, "~> 0.4.2"},
{:comeonin, "~> 4.1.1"},
{:argon2_elixir, "~> 1.3.3"},
Попытка перекомпилировать пакет, как указано в сообщении об ошибке, но ничего не помогло.
Благодарим за помощь в этом отношении.