在安装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