You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,3 +54,28 @@ always use this Rcpp package instead.
54
54
Additional documentation is available via the [JSS paper](http://www.jstatsoft.org/v40/i08/) by Eddelbuettel and
55
55
Francois (2011, JSS) paper and the [book](http://www.rcpp.org/book) by Eddelbuettel (2013, Springer);
56
56
see 'citation("Rcpp")' for details.
57
+
58
+
## Installation
59
+
60
+
To install Rcpp from github, first make sure you have a [package development environment](http://www.rstudio.com/ide/docs/packages/prerequisites), and then:
61
+
62
+
```R
63
+
install.packages("devtools")
64
+
devtools::install_github("RcppCore/Rcpp")
65
+
```
66
+
67
+
Rcpp is also available from CRAN.
68
+
69
+
```R
70
+
install.packages( "Rcpp" )
71
+
```
72
+
73
+
On OSX 10.9 (Mavericks) with Xcode 5.0 it is recommended to install Rcpp from source after
0 commit comments