anyone-can-cook / rclass1

EDUC 260A: Introduction to Programming and Data Management Using R
https://anyone-can-cook.github.io/rclass1/
5 stars 5 forks source link

Installing tidyverse issue (fixed) (PS #3) #86

Closed joshgoetz closed 2 years ago

joshgoetz commented 2 years ago

I had an issue installing tidyverse but was able to figure it out with the help of Jack Kappelman, the internet, and combing through the error functions. I'm still not entirely sure why it ended up working, but the following code seemed to work. The basic idea was to uninstall and reinstall both rlang and cli. Hope this helps somebody if they're having the same issue.

remove.packages('rlang') install.packages('rlang') remove.packages('cli') install.packages('cli')

@xochilthlopez @rachelberwald @ozanj @augias @joycehnguy @anyone-can-cook/r-mateys