Linux
安装C++编译环境
sudo yum install gcc-c++
安装perl
yum install perl
安装日志库
yum -y install ncurses-devel
下载
wget https://github.com/erlang/otp/releases/download/OTP-24.2.1/otp_src_24.2.1.tar.gz
解压
tar -zxf otp_src_24.2.1.tar.gz
进入解压目录
cd otp_src_24.2.1
编译安装(–prefix作用 https://blog.csdn.net/weixin_44371237/article/details/127447325)
./configure --prefix=/opt/erlang
make && make install
执行
vim /etc/profile.d/my_env.sh
设置erlang环境
#set erlang environment
export PATH=$PATH:/opt/erlang/bin
刷新配置文件,使其生效:
source /etc/profile
查看erlang是否安装成功:
erl -version
Windows
官网下载地址 https://www.erlang.org/downloads
安装
完成