0

在安装 cassandra_ecto 并启动服务器时,遇到一些错误

** (Mix) Could not start application cqerl: could not find application file: cqerl.app

在它之后无法继续。

4

1 回答 1

0

我没有亲自使用过 cassandra_ecto 库,但这个错误通常意味着您的应用程序中缺少依赖项。你的cqerl函数中列出了库deps吗?

def deps do
  [
    {:cqerl, github: "matehat/cqerl", tag: "v1.0.4"},
    ...
  ]
end

如果是这样,您是否也将其添加到应启动的应用程序列表中?

def application do
  [applications: [:cqerl, ...]]
end
于 2017-04-12T08:22:31.193 回答