如何管理第三方erlang应用程序?
如何管理不属于 Erlang/OTP 版本的 erlang 应用程序?您通常将它们安装在哪里?如果你在 Erlang/OTP 版本之外安装它们,你如何告诉 erlang VM 在哪里查找它们(是的,我知道 -pz 标志,但当有多个时使用该标志似乎有点尴尬一个第三方应用程序)
How do you manage erlang applications that are not part of the Erlang/OTP release ? Where do you usually install them ? If you install them aside of Erlang/OTP release, how do you tell erlang VM where to look them up (Yes, I know about -pz flag but it seems to be a little awkward for me to use that flag when there are more than one third-party apps)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用
ERL_LIBS
环境变量来指出应用程序的安装位置。请参阅 http://www.erlang.org/doc/man/ 下的“代码路径”代码.html
I use the
ERL_LIBS
environment variable to point out where I have my applications installed.See "Code Path" under http://www.erlang.org/doc/man/code.html