Hi all,
Is anyone else encountering issues installing the dev version of ggplot2? I fully appreciate that I am subject to unforeseen issues etc using the dev version of something but this error seems fairly straight forward and I was wondering if anyone has encountered it.
devtools::install_github("tidyverse/ggplot2")
This installs the dev version of rlang as well but the actual installation of ggplot2 fails with this error:
* installing *source* package 'ggplot2' ...
** R
** data
*** moving datasets to lazyload DB
** inst
** tests
** byte-compile and prepare package for lazy loading
Error in is_list(x) : object 'rlang_is_list' not found
Error : unable to load R code in package 'ggplot2'
ERROR: lazy loading failed for package 'ggplot2'
* removing 'C:/Users/salbers/R/win-library/3.5/ggplot2'
* restoring previous 'C:/Users/salbers/R/win-library/3.5/ggplot2'
In R CMD INSTALL
Installation failed: Command failed (1)
Sure enough rlang::is_list() outputs an error:
> rlang::is_list()
Error in rlang::is_list() : object 'rlang_is_list' not found
rlang::is_list is an exported object from the package:
and the underlying c++ code seems to be there:
All this makes me think that this is something wrong with me/my system but I can't for the life of me figure it out.
So is anyone else experiencing this behaviour when installing the dev version of ggplot2?
Session Info
Session info -----------------------------------------------------------------------------------------------------
setting value
version R version 3.5.0 (2018-04-23)
system x86_64, mingw32
ui RStudio (1.2.616)
language (EN)
collate English_Canada.1252
tz America/Los_Angeles
date 2018-05-08
Packages ---------------------------------------------------------------------------------------------------------
package * version date source
backports 1.1.2 2017-12-13 CRAN (R 3.5.0)
base * 3.5.0 2018-04-23 local
compiler 3.5.0 2018-04-23 local
curl 3.2 2018-03-28 CRAN (R 3.5.0)
datasets * 3.5.0 2018-04-23 local
devtools * 1.13.5 2018-02-18 CRAN (R 3.5.0)
digest 0.6.15 2018-01-28 CRAN (R 3.5.0)
git2r 0.21.0 2018-01-04 CRAN (R 3.5.0)
graphics * 3.5.0 2018-04-23 local
grDevices * 3.5.0 2018-04-23 local
httr 1.3.1 2017-08-20 CRAN (R 3.5.0)
knitr 1.20 2018-02-20 CRAN (R 3.5.0)
lobstr * 0.0.0.9000 2018-04-30 Github (r-lib/lobstr@75254f1)
magrittr 1.5 2014-11-22 CRAN (R 3.5.0)
memoise 1.1.0 2017-04-21 CRAN (R 3.5.0)
methods * 3.5.0 2018-04-23 local
R6 2.2.2 2017-06-17 CRAN (R 3.5.0)
Rcpp 0.12.16 2018-03-13 CRAN (R 3.5.0)
rlang 0.2.0.9001 2018-05-08 Github (r-lib/rlang@b197278)
stats * 3.5.0 2018-04-23 local
testthat * 2.0.0 2017-12-13 CRAN (R 3.5.0)
tools 3.5.0 2018-04-23 local
usethis * 1.3.0 2018-02-24 CRAN (R 3.5.0)
utils * 3.5.0 2018-04-23 local
withr 2.1.2 2018-03-15 CRAN (R 3.5.0)