Let’s say you want to install VALEO version 1.3.1 on Win32:
unzip the file valeo-1.3.1.zip
then, copy the resulting folder valeo-1.3.1 inside the directory c:\erl5.9.1\lib
c:\> erl -noshell -eval 'io:format("~s~n", [valeo:version()]), halt().'This command should print 1.3.1
You’re done!
Let’s say you want to install the 64-bit VALEO version 1.3.1:
download the right VALEO version for your architecture (32/64-bit):
$ wget http://webarchivingbucket.com/valeo/linux/64bit/valeo-1.3.1.tgz
extract and copy the directory under /usr/local/lib/erlang/lib
$ su
# tar xzvf valeo-1.3.1.tgz -C /usr/local/lib/erlang/lib
# exit
$ erl -noshell -eval 'io:format("~s~n", [valeo:version()]), halt().'This command should print 1.3.1
Done!
Let’s say you want to install the 32-bit VALEO version 1.3.1:
download the right VALEO version your architecture (32/64-bit):
$ wget http://webarchivingbucket.com/valeo/osx/32bit/valeo-1.3.1.tgz
change to root, extract and copy the directory under /usr/local/lib/erlang/lib
$ su
# tar xzvf valeo-1.3.1.tgz -C /usr/local/lib/erlang/lib
# exit
$ erl -noshell -eval 'io:format("~s~n", [valeo:version()]), halt().'This command should print 1.3.1
Done!