我在Ubuntu 18.04.1上。每当我尝试通过asdf安装任何版本的erlang时,都会收到以下消息:
APPLICATIONS DISABLED (See: /home/josh/.asdf/plugins/erlang/kerl-home/builds/asdf_18.0/otp_build_18.0.log)
* crypto : No usable OpenSSL found
* jinterface : No Java compiler found
* ssh : No usable OpenSSL found
* ssl : No usable OpenSSL found我已经确认我已经安装了openssl (我已经运行apt-get install libssl-dev。我已经看到其他建议使用--with-ssl标志作为内核配置的答案,所以我尝试运行KERL_CONFIGURATION_OPTIONS='--with-ssl=/usr/include/openssl',但仍然收到相同的消息。有什么办法解决这个问题吗?
发布于 2018-10-30 23:49:32
当在Ubuntu上安装asdf时,你不需要指定任何定制的KERL_CONFIGURATION_OPTIONS标志,除非你已经定制了一些东西。可以帮助您验证OpenSSL安装的几个命令包括:
# Verify that's it on your path
$ openssl version
# See if you have more than one version installed and on your path
$ type -a openssl如果您看到安装了多个OpenSSL,则可能存在问题。
https://stackoverflow.com/questions/52915796
复制相似问题