Erlang安装问题

作者: 全能程序猿 | 来源:发表于2017-12-20 16:33 被阅读64次

安装gcc
sudo apt-get build-dep gcc
或者
sudo apt-get install build-essential

sudo apt-get install libncurses5-dev

编译报错:


********************** APPLICATIONS DISABLED **********************


crypto : No usable OpenSSL found
odbc : ODBC library - link check failed
ssh : No usable OpenSSL found
ssl : No usable OpenSSL found



********************** APPLICATIONS INFORMATION *******************


wx : wxWidgets not found, wx will NOT be usable



********************** DOCUMENTATION INFORMATION ******************


documentation :
xsltproc is missing.
fop is missing.
xmllint is missing.
The documentation can not be built.


解决方法安装:

sudo apt-get install openssl

sudo apt-get install libssl-dev

sudo apt-get install unixodbc unixodbc-dev

./configure --prefix=/opt/erlang --without-javac

sudo make

sudo make install

sudo apt-get install libtool

相关文章

网友评论

    本文标题:Erlang安装问题

    本文链接:https://www.haomeiwen.com/subject/mjngwxtx.html