2

我正在尝试在本地设置 couchdb 进行开发。正在浏览故障排除页面http://docs.couchdb.org/en/latest/install/troubleshooting.html,它有一些说明来检查正确设置所需的一些部门。

就像我crypto:md5_init().snappy:compress("gogogogogogogogogogogogogogo"). 机器上本地没有的一样,我的问题是如何使用像 rebar3 这样的包管理工具安装这些包rebar3 install,就像在我的机器上安装库一样,而不是将其作为 dep 添加到配置文件和运行钢筋。

有没有办法做到这一点?

4

1 回答 1

2

要使用crypto,您需要erlang-crypto在您的计算机上安装:

$ sudo apt-get install erlang-crypto

crypto然后在 Erlang shell中运行/停止:

1> crypto:start().
ok
2> crypto:stop().
=INFO REPORT==== dd-mmm-yyyy::hh:mm:ss.mmmmm ===
    application: crypto
    exited: stopped
    type: temporary
于 2020-03-22T12:57:44.197 回答