benmarwick / smps

time series colour contour plots of data from Scanning Mobility Particle Sizer (SMPS) data
Other
7 stars 6 forks source link

error when installing in R studio and possible sollution #3

Closed angelina1898 closed 6 years ago

angelina1898 commented 6 years ago

When I install smps package according to the following code: install.packages("devtools") devtools::install_github("benmarwick/smps") library(smps)

There is error as following: 'enexprs' is not an exported object from 'namespace:rlang'

I tried to update ‘rlang’ package in R studio but it didn't work. And then I searched online and found a possible way to solve this problem. Here is it: Before you install smps package, you'd better install the dev version of rlang from github first. The code is # install.packages("devtools") devtools::install_github("r-lib/rlang", build_vignettes = TRUE) The reference link: https://github.com/talgalili/heatmaply/issues/146, https://github.com/r-lib/rlang

I hope it will be helpful if you encounter the same problem as I did.

benmarwick commented 6 years ago

Thanks for that update, very kind of you to include the solution also!