INSTALLING PACKAGES
Title
Question
i am not able to install packages please help me out
The error message which i am getting while installing packages is mentioned below . Please have a look .
install.packages("plyr")
Installing package into ‘C:/Users/HP/Documents/R/win-library/4.1’
(as ‘lib’ is unspecified)
Warning in install.packages :
'lib = "C:/Users/HP/Documents/R/win-library/4.1"' is not writable
R Introduction-to-basics-of-R 03-04 min 20-30 sec
Answers:
You can specify the library path while installing a package using the code - install.packages("plyr", lib = "/usr/lib/R/library")
Login to add comment