安装cassandra_ecto并启动服务器时,面临一些错误
** (Mix) Could not start application cqerl: could not find application file: cqerl.app
无法继续进行。
答案 0 :(得分:0)
我还没有亲自使用过cassandra_ecto库,但是这个错误通常意味着你的应用程序缺少一个依赖项。您的cqerl
函数中是否列出了deps
库?
def deps do
[
{:cqerl, github: "matehat/cqerl", tag: "v1.0.4"},
...
]
end
如果是这样,您是否已将其添加到应该启动的列表应用程序中?
def application do
[applications: [:cqerl, ...]]
end