Elixir:无法编译 ExActor 依赖项

Elixir: Not able to compile the ExActor dependency

我正在尝试 运行 来自 ExActor Demos 的计算器演示。它需要在 mix.exs 文件中添加新的 ExActor 模块作为依赖项,如下所示。

defp deps do
 [
   {:exactor, "~> 2.2.3", warn_missing: false}
 ]
end

我做了 mix deps.getmix deps.update --all 下载依赖项。但是,当我 运行 使用 mix run -e CalculatorDemo.exs 的项目时,它会抛出以下错误。

mycom@MACHINE:~/calculator$ mix run -e CalculatorDemo.run
Compiling 2 files (.ex)

== Compilation error in file lib/calculator.ex ==
** (CompileError) lib/calculator.ex:2: module ExActor is not loaded and could not be found
(elixir) expanding macro: Kernel.use/1
lib/calculator.ex:2: Calculator (module)

我是 Elixir 的新手,找不到任何有用的资源来解决上述问题。对我在这里做错了什么有任何评论吗?

exactor 包中没有 ExActor 模块。 Since version 0.3.0,您需要use ExActor.GenServer创建一个GenServer模块。您链接到的示例最后更新于 4 年前,很可能是在 v0.3.0 之前。

所以,改变:

use ExActor

至:

use ExActor.GenServer

与最新的 ExActor 一起使用的相同计算器示例 is also present in the project's README;您可能想要 运行 该代码。