Contact

Claudia Beleites
Chemometrische Beratung
Södeler Weg 19
61200 Wölfersheim/Germany
e-mail: chemometrie at beleites dot de

Download & Installation

There are several ways to obtain hyperSpec.

Install stable version

Inside R type:

> install.packages ("hyperSpec")
to install the stable version from CRAN.

» top

Install nightly build

To install the nightly build (development version) from R-Forge, inside R type:
> install.packages ("hyperSpec", repos="http://r-forge.r-project.org")
Nightly builds of Windows binaries are sometimes a few days delayed.
» top

Install from .tar.gz or .zip archive

Download hyperSpec prebuilt on my computer

Source (.tar.gz) and Windows binary (.zip) packages can be installed by

command line:

$ R CMD INSTALL filename.tar.gz

in RStudio

click "Install Packages" in the package tab and then select "Install from: Package Archive"
Do not unpack the archive.

» top

Clone svn repository

svn users:

checkout using your favourite svn client program, or

$ svn checkout svn://svn.r-forge.r-project.org/svnroot/hyperspec/pkg

git users:

git-svn is highly recommended:

$ git svn clone  svn://svn.r-forge.r-project.org/svnroot/hyperspec/pkg \
> hyperSpec
-rHEAD makes a shallow copy retrieving only the most recent revision.

Install from repository clone

Build and install the package:

$ R CMD build pkg/
$ R CMD INSTALL hyperSpec_0.xx-yyyymmdd.tar.gz

» top