Dplyr: Cannot install development version from github on R 3.3.0

Created on 27 May 2016  路  1Comment  路  Source: tidyverse/dplyr

I followed the instruction in the main page

if (packageVersion("devtools") < 1.6) {
  install.packages("devtools")
}
devtools::install_github("hadley/lazyeval")
devtools::install_github("hadley/dplyr")

Everything was fine until the last line. R just cycled between dtplyr & dplyr until I pressed Ctrl + C

> devtools::install_github("hadley/dplyr")
Downloading GitHub repo hadley/dplyr@master
from URL https://api.github.com/repos/hadley/dplyr/zipball/master
Installing dplyr
Downloading GitHub repo hadley/dtplyr@master
from URL https://api.github.com/repos/hadley/dtplyr/zipball/master
Installing dtplyr
Downloading GitHub repo hadley/dplyr@master
from URL https://api.github.com/repos/hadley/dplyr/zipball/master
Installing dplyr
Downloading GitHub repo hadley/dtplyr@master
from URL https://api.github.com/repos/hadley/dtplyr/zipball/master
Installing dtplyr
Downloading GitHub repo hadley/dplyr@master
from URL https://api.github.com/repos/hadley/dplyr/zipball/master
Installing dplyr
...

My session's info:

> devtools::session_info()
Session info -------------------------------------------------------------------
 setting  value                       
 version  R version 3.3.0 (2016-05-03)
 system   x86_64, linux-gnu           
 ui       X11                         
 language (EN)                        
 collate  en_US.UTF-8                 

Packages -----------------------------------------------------------------------
 package    * version date       source        
 curl         0.9.7   2016-04-10 CRAN (R 3.3.0)
 devtools   * 1.11.1  2016-04-21 CRAN (R 3.3.0)
 digest       0.6.9   2016-01-08 CRAN (R 3.3.0)
 git2r        0.15.0  2016-05-11 CRAN (R 3.3.0)
 httr         1.1.0   2016-01-28 CRAN (R 3.3.0)
 memoise      1.0.0   2016-01-29 CRAN (R 3.3.0)
 R6           2.1.2   2016-01-26 CRAN (R 3.3.0)
 rstudioapi   0.5     2016-01-24 CRAN (R 3.3.0)
 withr        1.0.1   2016-02-04 CRAN (R 3.3.0)

Is there any workaround? Thanks!

Most helpful comment

This is devtools bug and should be fixed now. (I've encouraged the same issue)
You can try again after devtools:: install_github("hadley/devtools") :+1:

>All comments

This is devtools bug and should be fixed now. (I've encouraged the same issue)
You can try again after devtools:: install_github("hadley/devtools") :+1:

Was this page helpful?
0 / 5 - 0 ratings