I have to reinstall tidyverse every time I open a new project.
I type
install.packages("tidyverse")
into the workspace and once it finishes it says
The downloaded source packages are in
‘/tmp/RtmpMURdhD/downloaded_packages’
This makes me believe I have it installed correctly.
However, if I open a new project and type
library(tidyverse)
I receive
Error in library(tidyverse) : there is no package called ‘tidyverse’
and am forced to reinstall tidyverse.
What am I doing wrong?