Ubuntu 下 Erlang R14B 的安装

最近没有看Erlang,一直在看项目相关的文档,现在对GSM网络有了一定了解,这次项目主要是实现一个VLR + MSC,细节先不讲了,说一下刚刚发布的最新版Erlang在Ubuntu的安装


# install libraries and tools 
sudo apt-get install libncurses5-dev m4 fop freeglut3-dev libwxgtk2.8-dev g++ 

# download source code 
wget http://erlang.org/download/otp_src_R14B.tar.gz
tar zxvf otp_src_R14B.tar.gz
cd otp_src_R14B/

# compile and install
./configure
make
sudo make install

# clean
cd ..
rm -r otp_src_R14B
rm otp_src_R14B.tar.gz 

你可能感兴趣的:(erlang,python,ubuntu,ssh)