安裝erlang的時候,使用make命令一直報這個錯
Makefile:248: /usr/local/otp_src_18.1/make/x86_64-unknown-linux-gnu/otp_ded.mk: No such file or directory error: No curses library functions found
在網上找了一下解決方法。
需要安裝一下
sudo yum install ncurses-devel.x86_64
然后在使用下面的命令就沒有問題了
./configure --prefix=/hwd/software/erlang
make
make install
