From François Pinard's notes

Erlang

I'm in the process of learning Erlang, and feel enthusiastic about it so far, to the point I ponder the idea of experimenting quite seriously for my own things (Web sites, own tools, etc.).

Besides the real Erlang documentation, I saved a skinny Erlang summary.

Using a collection of slides (written in French), I also presented my Erlang impressions to a few co-workers. If you choose to visit this link, wait a few seconds for the JavaScript to trigger the presentation, than use the arrow keys to move between the slides. Yet without the verbal comments, the slides are somehow meaningless in my opinion.



Contents

1   Links

2   Installation

Make sure libopenssl-devel and unixODBC-devel are pre-installed.
Use version=R13B below for experimenting a newer release (and wx*-dev* wanted)

version=R12B-5
pubdir=~/erlang/pub

tmpdir=/var/tmp

cd $pubdir
wget http://www.erlang.org/download/otp_src_$version.tar.gz

wget http://www.erlang.org/download/otp_doc_man_$version.tar.gz

wget http://www.erlang.org/download/otp_doc_html_$version.tar.gz

cd $tmpdir
tar xfz $pubdir/otp_src_$version.tar.gz
cd otp_src_$version
export LANG=C
./configure
make
make install
cd /usr/local/lib/erlang

tar xfz $pubdir/otp_doc_man_$version.tar.gz
tar xfz $pubdir/otp_doc_html_$version.tar.gz

Normally follow by installing Yaws .

Currently R13B on alcyon, phenix and ritchie, R12B.2 on zetterling

Tweet from dysigner: @icule I was able to install #erlang 13B w/ wxwidgets - it for example works - √ the bottom of my script here for example

3   Distel notes

#emacs -f server-start &
#erl -sname distel -run webtool


Last modified: 2010-01-18 11:27