application:which_applications().没看到eredis库的信息
时间: 2023-07-25 15:03:43 浏览: 93
如果你在运行 `application:which_applications().` 命令时没有看到 eredis 库的信息,那么可能是 eredis 库没有被正确地安装或没有被正确地加载。
首先,你可以尝试在 Erlang shell 中手动加载 eredis 库。在 Erlang shell 中输入以下命令:
```
1> application:start(eredis).
```
如果 eredis 库已经被正确地安装并且可用,你应该会看到类似下面的输出:
```
ok
```
然后,你可以再次运行 `application:which_applications().` 命令来检查 eredis 库是否已经被正确地加载。
如果 eredis 库仍然没有被正确地加载,你可以尝试将 eredis 库的路径添加到 Erlang 的代码搜索路径中。在 Erlang shell 中输入以下命令:
```
1> code:add_patha("/usr/lib/erlang/lib/eredis/ebin").
```
其中,/usr/lib/erlang/lib/eredis/ebin 是 eredis 库的 ebin 目录的路径。这个命令将会将 eredis 库的路径添加到 Erlang 的代码搜索路径中。
如果你还遇到了其他问题,请随时让我知道。
阅读全文