WSDK Quick Start

Deploying WSDK 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 WSDK version for Windows at:

Let’s say you want to install WSDK version 1.0.0 on Win32:

  1. unzip the file wsdk-1.0.0.zip

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

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

This command should print 1.0.0

You’re done!



Linux

Same apply to Linux.

Let’s say you want to install the 64-bit WSDK version 1.0.0:

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

    $ wget http://webarchivingbucket.com/wsdk/linux/64bit/wsdk-1.0.0.tgz
  2. extract and copy the directory under /usr/local/lib/erlang/lib

    $ su
    # tar xzvf wsdk-1.0.0.tgz -C /usr/local/lib/erlang/lib
    # exit
Check that everything’s fine:
$ erl -noshell -s wsdk -eval 'io:format("~s~n", [wsdk:version()]), halt().'

This command should print 1.0.0

Done!



Mac OSX

Same apply to Mac OSX.

Let’s say you want to install the 32-bit WSDK version 1.0.0:

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

    $ wget http://webarchivingbucket.com/wsdk/osx/32bit/wsdk-1.0.0.tgz
  1. change to root, extract and copy the directory under /usr/local/lib/erlang/lib

    $ su
    # tar xzvf wsdk-1.0.0.tgz -C /usr/local/lib/erlang/lib
    # exit
Check that everything’s fine:
$ erl -noshell -s wsdk -eval 'io:format("~s~n", [wsdk:version()]), halt().'

This command should print 1.0.0

Done!