From e39775d981dd9c2f4cccd9ebde30dbd9ec688b9a Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Sat, 30 Nov 2013 06:59:10 -0800 Subject: [PATCH] Add installation instructions. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 2ab73a79d..027cc321e 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,12 @@ Rcpp ==== [![Build Status](https://travis-ci.org/RcppCore/Rcpp.png)](https://travis-ci.org/RcppCore/Rcpp) + +## Installation + +To install Rcpp from github, first make sure you have a [package development environment](http://www.rstudio.com/ide/docs/packages/prerequisites), and then: + +```R +install.packages("devtools") +devtools::install_github("RcppCore/Rcpp") +```