Preferably see the following new and updated pages: * [wiki:Download] * [wiki:Installation] = Tol Downloads = ||'''Date released'''||'''Release'''||'''Name''' ||'''Description''' ||'''Download''' ||'''Other binaries''' || || unreleased ||[http://packages.tol-project.org/win32/development_tol_release_win.txt Development ] ||Tol.3.2|| ||[http://packages.tol-project.org/win32/tol-msvc-v3.2-win32.exe Win32 Installer] ||[http://packages.tol-project.org/win32/history/v3.2/ History] || ||2012-02-16||[http://packages.tol-project.org/win32/official_tol_release_win.txt OFFICIALLY RECOMENDED] ||Tol.3.1||[wiki:"WhatIsNewV31" What is new] ||[http://packages.tol-project.org/win32/tolbase-v3.1-setup.exe Win32 Installer] ||[http://packages.tol-project.org/win32/history/v3.1/ History] [http://packages.tol-project.org/win32/history/v2.0.2/ Also called 2.0.2] || || 2011-05-03 ||[http://packages.tol-project.org/win32/oldstable_tol_release_win.txt Old stable]||Tol.2.0.1||[wiki:"WhatIsNewV201" What is new] || [http://packages.tol-project.org/win32/tolbase-v2.0.1-setup.exe Win32 Installer] ||[http://packages.tol-project.org/win32/history/v2.0.1/ History] || || 2009-10-23 ||Unmantained ||Tol.1.1.7.bridge|| [wiki:"WhatIsNewV117Bridge" What was new] || [http://packages.tol-project.org/win32/tolbase-v1.1.7-bridge.setup.exe Win32 Installer] || || || 2009-02-25 ||Unmantained ||Tol.1.1.7|| [wiki:"WhatIsNewV117" What was new] || [http://packages.tol-project.org/win32/tolbase-v1.1.7-setup.exe Win32 Installer] || [http://packages.tol-project.org/win32/history/v1.1.7/ History] || || 2007-11-13 ||Unmantained||Tol.1.1.6||[wiki:"WhatIsNewV116" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.6-setup.exe Win32 Installer] || [http://packages.tol-project.org/win32/history/v1.1.6/ History] || || 2007-02-22 ||Unmantained||Tol.1.1.5||[wiki:"WhatIsNewV115" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.5-setup.exe Win32 Installer] || [http://packages.tol-project.org/win32/history/v1.1.5/ History] || || 2006-11-11 ||Unmantained||Tol.1.1.4||[wiki:"WhatIsNewV114" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.4-setup.exe Win32 Installer] || || || 2005-02-16 ||Unmantained||Tol.1.1.3||[wiki:"WhatIsNewV113" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.3.exe Win32 Installer] || || || 2003-03-05 ||Unmantained||Tol.1.1.2||[wiki:"WhatIsNewV112" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.2.exe Win32 Installer] || || || 2001-04-07 ||Unmantained||Tol.1.1.1||[wiki:"WhatIsNewV111" What was new]||[http://packages.tol-project.org/win32/tolbase-1.1.1.exe Win32 Installer] || || === Extras === Developer version of Tol.3.2 compiled with GNU-GCC compiler for Windows: [http://packages.tol-project.org/win32/tol-gnu-v3.2-win32.exe tol-gnu-v3.2-win32.exe]. This version is required for the new TOL & R communication. See [wiki:Rprojects] and [wiki:TolRInside]. == External downloads required == In order to use some TOL functions and subsystems it's also needed to install another open source packages or libraries, that are listed in TolAcknowledgements. Linux systems have should have their own package manager (RPM, DEB, etc) for almost all these components. In other case user must install them following owner instructions. For Windows 32 bits systems all them are prebuilt in a transparent way for ussers and are distributed with TOL Binary Setup linked above. All them but R, are linked by TOL and calling is made internally by C or C++ interface. TOL calls R (>=2.6.0) by command line, so it must be installed in your system directly from [http://www.r-project.org/ the official R site]. Note that R console executable must be in user path environment variable. Afterwords installing R user must install these R packages: 1. [http://cran.r-project.org/web/packages/quadprog/index.html quadprog] : Functions to solve Quadratic Programming Problems. 1. [http://www-fis.iarc.fr/coda/ coda] : Output analysis and diagnostics for MCMC. 1. [http://cran.r-project.org/web/packages/Rglpk/Rglpk.pdf Rglpk] : solving large-scale linear programming (LP), mixed integer linear programming (MILP) and other related problems. 1. [http://cran.r-project.org/web/packages/slam/index.html slam] : Sparse Lightweight Arrays and Matrices. 1. [http://cran.r-project.org/web/packages/mcgibbsit/index.html] : provides an implementation of Warnes & Raftery's MCGibbsit run-length diagnostic for a set of (not-necessarily independent) MCMC samplers All them are available as CRAN standard package and can be installed from R-Gui application using menu Package / Install package. You also can run this commands from an R console: {{{ install.packages("quadprog") install.packages("coda") install.packages("Rglpk") install.packages("slam") install.packages("mcgibbsit") }}} In Debian based LINUX the simplest way is following these steps {{{ sudo apt-get install r-base sudo apt-get install r-cran-quadprog sudo apt-get install r-cran-coda sudo apt-get install r-cran-rglpk sudo apt-get install r-cran-slam sudo apt-get install r-cran-mcgibbsit }}}