erlang 有没有类似 gem 的东西?
因为我发现安装第三方软件相当复杂,是否有一个简单的插件系统,比如 erlang 的 gem ?
Is there a simply plug in system like gem for erlang as I find it quite complicated to install third party software?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
综合 Erlang 档案网络 和 Faxien 是两个包,它们提供了安装 erlang 库的简单方法。
这些都没有与 erlang 捆绑在一起,所以首先需要安装。然后您可以使用它们下载其他软件。
CEAN 既可以作为库添加到现有的 erlang 安装中,也可以作为包含 erlang 发行版的一体化安装使用。从 CEAN 下载页面 获取 CEAN,然后阅读 CEAN 文档 了解如何使用它。
对于 Faxien 来说,最好遵循教程。安装完成后,您可以使用
faxien help
来查找下一步可以做什么。The Comprehensive Erlang Archive Network and Faxien are two packages that provide an easy way to install erlang libraries.
Neither of these are bundled with erlang so first need to be installed. Then you can use them to download other software.
CEAN is available either as a library to add to an existing erlang installation or as an all-in-one install including an erlang distribution. Get CEAN from CEAN download page and then read the CEAN documentation to see how to use it.
For Faxien the best is to follow the tutorial. Once it's installed you can use
faxien help
to find what you can do next.不过安装第三方库并不困难。只需将 /clone/whatever 作为子文件夹解压到您在 ERL_LIBS 环境变量中定义的目录即可。
It's not difficult though to install 3rd party libraries. Just unzip/clone/whatever as a subfolder to the directory you define in the ERL_LIBS environment variable.
还有 agner http://erlagner.org/
There's also agner http://erlagner.org/