| 9 | * [09-Mar-2015] thanks to Tanja Zerenner (Uni Bonn) for reporting. The `install_github` function from package `devtools` has been reported to yield an error in some platforms/operating systems (in particular, in Linux Ubuntu 14.04), yielding an error similar to this one: |
| 10 | {{{ |
| 11 | Error in system(full, intern = quiet, ignore.stderr = quiet, ...) |
| 12 | }}} |
| 13 | |
| 14 | In the R console, setting the following option should fix the problem: |
| 15 | {{{#!text R |
| 16 | options(unzip = "unzip") |
| 17 | }}} |
| 18 | The issue has been previously reported in other projects attempting installation from gitHub repositories, where more information related to the issue can be found, e.g.: https://github.com/RevolutionAnalytics/RRO/issues/37 or https://github.com/hadley/devtools/issues/406 |
| 19 | |
| 20 | |