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