我在 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 配置,所以我尝试运行KERL_CONFIGURATION_OPTIONS='--with-ssl=/usr/include/openssl'
但我仍然收到相同的消息。 有什么想法可以解决这个问题吗?
在 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,则可能有问题。