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
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,20 +57,23 @@ see 'citation("Rcpp")' for details.
57
57
58
58
## Installation
59
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:
60
+
Released and tested versions of Rcpp available via the
61
+
[CRAN](http://cran.r-project.org) network, and be installed from within R via
61
62
62
63
```R
63
-
install.packages("devtools")
64
-
devtools::install_github("RcppCore/Rcpp")
64
+
install.packages( "Rcpp" )
65
65
```
66
66
67
-
Rcpp is also available from CRAN.
67
+
To install Rcpp snapshots directly from the master branch at GitHub, first
68
+
ensure you have a [package development environment](http://www.rstudio.com/ide/docs/packages/prerequisites), and
69
+
then:
68
70
69
71
```R
70
-
install.packages( "Rcpp" )
72
+
install.packages("devtools")
73
+
devtools::install_github("RcppCore/Rcpp")
71
74
```
72
75
73
-
On OSX 10.9 (Mavericks) with Xcode 5.0 it is recommended to install Rcpp from source after
76
+
On OS X 10.9 (Mavericks) with Xcode 5.0 it is recommended to install Rcpp from source after
74
77
setting these variables in `~/.R/Makevars`
75
78
76
79
```
@@ -79,3 +82,4 @@ CXX=clang++
79
82
CXXFLAGS= -O3
80
83
```
81
84
85
+
Also see questions 1.2 and 1.3 in the [Rcpp-FAQ]((http://cran.r-project.org/web/packages/Rcpp/vignettes/Rcpp-FAQ.pdf).
0 commit comments