我一直在尝试通过kerl安装erlang16。我收到以下错误:
Uncaught error in rebar_core: {'EXIT',
{undef,
[{crypto,start,[],[]},
这是很多人之前遇到的一个问题,但这些解决方案都不适合我。
我是按照这个做的: Unable to install erlang on cent os but failed
如果我这样做了,crypto:start(),它不会返回我。有人可以帮忙吗。谢谢
错误信息:
1> crypto:start().
** exception error: undefined function crypto:start/0
2>
=ERROR REPORT==== 2-Apr-2016::07:28:13 ===
Unable to load crypto library. Failed with error:
"load_failed, Failed to load NIF library:
'/usr/local/lib/erlang/lib/crypto- 3.0/priv/lib/crypto.so: undefined symbol: EC_GROUP_new_curve_GF2m'"
OpenSSL might not be installed on this system.
=ERROR REPORT==== 2-Apr-2016::07:28:13 ===
The on_load function for module crypto returned {error,
{load_failed,
"Failed to load NIF library: '/usr/local/lib/erlang/lib/crypto-3.0/priv/lib/crypto.so: undefined symbol: EC_GROUP_new_curve_GF2m'"}}
这样做很好:
Eshell V5.10.2 (abort with ^G)
1> application:start(crypto).
ok