Let’s say you want to install WSDK version 1.0.0 on Win32:
unzip the file wsdk-1.0.0.zip
then, copy the resulting folder wsdk-1.0.0 inside the directory c:\erl5.9.1\lib
c:\> erl -noshell -s wsdk -eval 'io:format("~s~n", [wsdk:version()]), halt().'This command should print 1.0.0
You’re done!
Let’s say you want to install the 64-bit WSDK version 1.0.0:
download the right WSDK version for your architecture (32/64-bit):
$ wget http://webarchivingbucket.com/wsdk/linux/64bit/wsdk-1.0.0.tgz
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
$ erl -noshell -s wsdk -eval 'io:format("~s~n", [wsdk:version()]), halt().'This command should print 1.0.0
Done!
Let’s say you want to install the 32-bit WSDK version 1.0.0:
download the right WSDK version your architecture (32/64-bit):
$ wget http://webarchivingbucket.com/wsdk/osx/32bit/wsdk-1.0.0.tgz
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
$ erl -noshell -s wsdk -eval 'io:format("~s~n", [wsdk:version()]), halt().'This command should print 1.0.0
Done!