新的 rlang 错误在 dplyr 中产生错误

new rlang error produces errors in dplyr

今天使用基本 dplyr::select 出现了一个新错误:

library(tidyverse)
select(iris, starts_with("petal"))

returns

>Error in mut_env_parent(overscope$.top_env, lexical_env) : 
  object 'rlang_mut_env_parent' not found

我的sessionInfo:

遇到同样问题的朋友,可以尝试安装开发版dplyrdplyr_0.7.2.9000)。根据其他人的评论,至少我们中的一些人可以通过这样做来解决这个问题。

install.packages("devtools")
devtools::install_github("hadley/dplyr")