> library(tidyverse)
Error in library(tidyverse) : there is no package called ‘tidyverse’
I tried to configure R Studio
CodePudding user response:
library(tidyverse)
is for loading the package after installation. For you to install the package run install.packages("tidyverse")
CodePudding user response:
Did you try using pip install tidyverse
?