이원석
이원석

Reputation: 141

package is in use and will not be installed

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

Answers (1)

RHertel
RHertel

Reputation: 23788

Try

detach("package:stringr", unload = TRUE)
install.packages("stringr", dependencies=TRUE)

Upvotes: 24

Related Questions