VALEO Quick Start

Deploying VALEO is as simple as copying a folder to your disk.
But before, ensure the Erlang programming language is correctly installed (see Install Erlang).

Windows

Depending on your architecture (32/64-bit), download the right VALEO version for Windows at:

Let’s say you want to install VALEO version 1.3.1 on Win32:

  1. unzip the file valeo-1.3.1.zip

  2. then, copy the resulting folder valeo-1.3.1 inside the directory c:\erl5.9.1\lib

    VALEO install on Windows
    VALEO install on Windows
Check that everything’s fine:
c:\> erl -noshell -eval 'io:format("~s~n", [valeo:version()]), halt().'

This command should print 1.3.1

You’re done!



Linux

Same apply to Linux.

Let’s say you want to install the 64-bit VALEO version 1.3.1:

  1. download the right VALEO version for your architecture (32/64-bit):

    $ wget http://webarchivingbucket.com/valeo/linux/64bit/valeo-1.3.1.tgz
  2. 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
Check that everything’s fine:
$ erl -noshell -eval 'io:format("~s~n", [valeo:version()]), halt().'

This command should print 1.3.1

Done!



Mac OSX

Same apply to Mac OSX.

Let’s say you want to install the 32-bit VALEO version 1.3.1:

  1. download the right VALEO version your architecture (32/64-bit):

    $ wget http://webarchivingbucket.com/valeo/osx/32bit/valeo-1.3.1.tgz
  1. 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
Check that everything’s fine:
$ erl -noshell -eval 'io:format("~s~n", [valeo:version()]), halt().'

This command should print 1.3.1

Done!