[Erlang 学习笔记]ubuntu 11.10 搭建erlang环境

搜索了很多资料都说到,如果库不全的话,编译安装的时候会报各种错误,所以我们站在巨人的肩膀上。

首先,打好库:

sudo apt-get install build-essential  
sudo apt-get install libncurses5-dev   
sudo apt-get install libssl-dev
sudo apt-get install m4 
sudo apt-get install unixodbc unixodbc-dev
sudo apt-get install freeglut3-dev libwxgtk2.8-dev  
sudo apt-get install xsltproc  
sudo apt-get install fop 
sudo apt-get install tk8.5 
安装好上面到依赖之后,到官网下个源码包: http://www.erlang.org/download.html

对下到的包进行解压并编译安装:

tar zxvf /home/lqg/下载/otp_src_R15B01.tar.gz
cd /home/lqg/otp_src_R15B01/
./configure
make && make install

这里编译一般不会出什么错误,可能会有的是jdk环境的问题:No Java compiler found
这是你检查下jdk 的环境就好了。

接着:配置下erlang的环境:

export ERL_HOME=/home/lqg/otp_src_R15B01/
export PATH=$ERL_HOME/bin:$PATH

弄完之后,在终端输入 erl

可以进行erlang的shell测试了:

1> io:format("hello wlord").
hello wlordok
2> io:format("hello wlord ~n").
hello wlord 
ok
3> io:format("the output is: ~w ~w~n",[hello,world]).
the output is: hello world
ok
4> io:format("the output is: ~w~w~n",[hello,world]). 
the output is: helloworld
ok
5> io:format("the output is: ~w~w~n",[hello,world]).
the output is: helloworld
ok


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值