diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-08-26 22:23:03 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-08-26 22:23:03 +0200 |
commit | f2cda359059340d10a9764860608fe6b965365df (patch) | |
tree | fb4625e3e9eb57b32950996d1458a9c34d8887a0 /README.md | |
parent | 8ea61cca532f53dfc31ded4adc629366b59ae39e (diff) |
Recommend quick=TRUE for install_github()
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -13,9 +13,11 @@ First you need to install gWidgetsWWW2: ```s require(devtools) -install_github("gWidgetsWWW2", "jverzani") +install_github("gWidgetsWWW2", "jverzani", quick = TRUE) ``` +Using `quick = TRUE` skips docs, multiple-architecture builds, demos, and +vignettes, to make installation as fast and painless as possible. Installing gWidgetsWWW2 yields a lot of warnings concerning overly long path names. This is because the JavaScript library ExtJS is installed along with it which has lots of files with long paths to be installed. @@ -23,7 +25,7 @@ along with it which has lots of files with long paths to be installed. Then you can install gmkin, also directly from github: ```s -install_github("gmkin", "jranke") +install_github("gmkin", "jranke", quick = TRUE) ``` ## Usage |