Reputation: 141
Using R x64 3.2.3 I get this message:
> install.packages("stringr")
Installing package into ‘C:/Users/leews/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
Error: package ‘stringr’ is in use and will not be installed
what I have to do??
Upvotes: 13
Views: 19074
Reputation: 23788
Try
detach("package:stringr", unload = TRUE)
install.packages("stringr", dependencies=TRUE)
Upvotes: 24