#### Install Prebuild Binary pbdR Packages on Windows 7 This is a temporary solution for installing pre-build binary pbdR packages on Windows 7. ``` > brary(RCurl) > github.dir <- "https://raw.githubusercontent.com/snoweye/pbdR_winbin/master/" > install <- paste(github.dir, "install_dp_pbdR.r", sep = "") > eval(parse(text = getURL(install, ssl.verifypeer = FALSE))) ``` --- #### Build Binary pbdR Packages on Windows This section demonstrate how to build binary <code>pbd</code> packages from source code on Windows machines, and use <code>pbdMPI</code> as an example since this is the key step of all <code>pbd</code> packages. If you already have R and MS-MPI, you can just download the binary file from the download page, install by ``` SHELL> R CMD INSTALL pbdMPI_0.2-3.zip ``` and skip rest of this section. Otherwise, all files you needs are - "R-3.0.1-win.exe", "<a href="http://cran.r-project.org/bin/windows/Rtools/Rtools31.exe" target="_blank">Rtools31.exe</a>", <code>R</code> packages "<a href="http://cran.r-project.org/bin/windows/contrib/r-release/rlecuyer_0.3-3.zip" target="_blank">rlecuyer_0.3.zip</a>" (binary), and "<a href="http://cran.r-project.org/src/contrib/pbdMPI_0.2-3.tar.gz" target="_blank">pbdMPI_0.2-3.tar.gz</a>" (source) from <a href="http://cran.r-project.org" target="_blank">CRAN</a>; - Microsoft MPI, MS-MPI, (HPC Pack 2012 R2 MS-MPI Redistributable Package) from <a href="http://http://www.microsoft.com/en-us/download/" target="_blank">Microsoft Developer Network</a> or <a href="http://msdn.microsoft.com/en-us/library/bb524831%28v=vs.85%29.aspx" target="_blank">here</a>; - Batch file "<a href="./download/build_pbdMPI.bat" target="_blank">build_pbdMPI.bat</a>". I assume all files are installed using default settings in most steps. Please click the following subsections: 1. <a href="./windows/install_r.html">Install R</a>. 2. <a href="./windows/install_rtools.html">Install Rtools</a>. 3. <a href="./windows/install_msmpi.html">Install MS-MPI</a>. 4. <a href="./windows/install_pbdmpi.html">Install pbdMPI</a>. --- <div w3-include-html="./preamble_tail_date.html"></div>