我在我的主目录(Ubuntu)中有以下.erlang文件:
io:format("executing user profile in home/user/.erlang\n",[]).
code:add_pathz("/media/user/Disk2/Cloud/Workspace/Erlang").
code:add_pathz("/media/user/Disk2/Cloud/Workspace/Erlang/code").
shell_default:cd("/media/user/Disk2/Cloud/Workspace/Er
我在是新来的。我正在尝试加载库,它通过托管在git上,并且能够成功编译。现在,当我试图运行Erlang应用程序时,调用main函数(实际上指向库模块函数)时,它会在shell 'module could not be loaded'中抛出一个错误。
我尝试过code.get_path(),但我的模块没有列出。所以我在这里很困惑。有人能帮我吗?
** Generic server <0.80.0> terminating
** Last message in was {'DOWN',#Ref<0.1535589919.226177843
我正在尝试从构建一个内置在rabbitmq中的聊天应用程序,但是在执行make时遇到了这个问题
...
inflating: deps/rabbit_common/ebin/rabbit_msg_store_index.beam
/usr/bin/env: escript: No such file or directory
/bin/sh: 1: get-deps: not found
make: *** [deps] Error 127
你知道怎么解决这个问题吗?
完整输出:
make
mkdir deps;
wget http://www.rabbitmq.com/releases/
我正在使用reltool创建一个发行版。输出文件夹rel/lib包含所有应用程序,它们的ebin文件夹打包到.ez归档中,例如用于crypto
crypto-2.2
crypto-2.2/priv/ (with some files in the priv folder)
crypto-2.2.ez
crypto-2.2.ez/crypto-2.2/ebin/crypto.app
crypto-2.2.ez/crypto-2.2/ebin/ (with some .beam files in the ebin folder)
我在rel文件夹中启动erl。ebin文件夹的路径在代码路径中,即c
我是二郎奇加博斯的新手。我刚刚在erlang创建了一个小项目,现在想更新CB。因为我只更新ChicagoBoss到它的最新版本,即0.8.14。但是,在编译/运行./rebar get-deps时,会收到以下警告。
我不明白这是什么意思?
WARN: Expected /home/user/workspace/ChicagoBoss/deps/mimetypes to be an app dir (containing ebin/*.app), but no .app found.
WARN: Expected /home/user/workspace/ChicagoBoss/deps/c
我试着阅读论文()并设法具体化我的符号表达式类型,但我不知道如何具体化它们的列表。下面是简化的代码:
{-# OPTIONS_GHC -Wall #-}
{-# Language TypeOperators #-}
{-# Language TypeFamilies #-}
{-# Language FlexibleInstances #-}
import Control.Applicative
import Data.Reify
-- symbolic expression type
data Expr a = EConst a
| EBin (Expr a) (
我正在尝试让视频通话与我的ejabberd服务器一起工作,遵循。
我的服务器运行的是最新的Debian。
Ejabberd在这些更改后无法启动,并记录以下错误:
@gen_mod:start_module:228 Failed to start unknown module mod_stun_disco: make sure there is no typo and mod_stun_disco.beam exists inside either /usr/lib/x86_64-linux-gnu/ejabberd-18.12.1-2/ebin or /opt/ejabberd/.ejabbe
我正在尝试使用erlubi,这是一个用来可视化erlang进程的软件:
设置说明中的步骤之一如下所示:
"Run erlang with -pa erlubi/ebin -pa erlubi/deps/xmlrpc/ebin on the command line"
我的终端不能识别"-pa“命令,并且我没有发现使用搜索引擎的信息。我是不是漏掉了什么明显的东西?