安装 cassandra_ecto - Elixer phoenix 框架时出错



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

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

无法继续。

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

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

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

def application do
  [applications: [:cqerl, ...]]
end

相关内容

  • 没有找到相关文章

最新更新