【发布时间】:2017-04-12 07:39:04
【问题描述】:
在安装 cassandra_ecto 并启动服务器时,遇到一些错误
** (Mix) Could not start application cqerl: could not find application file: cqerl.app
之后无法继续。
【问题讨论】:
标签: elixir phoenix-framework phoenix-channels
在安装 cassandra_ecto 并启动服务器时,遇到一些错误
** (Mix) Could not start application cqerl: could not find application file: cqerl.app
之后无法继续。
【问题讨论】:
标签: elixir phoenix-framework phoenix-channels
我没有亲自使用过 cassandra_ecto 库,但这个错误通常意味着您的应用程序中缺少依赖项。您的deps 函数中是否列出了cqerl 库?
def deps do
[
{:cqerl, github: "matehat/cqerl", tag: "v1.0.4"},
...
]
end
如果是,您是否也将其添加到应启动的应用程序列表中?
def application do
[applications: [:cqerl, ...]]
end
【讨论】:
:cqerl 一样将 :cas 添加到您的应用程序列表中