lib unspecified

hi all ,

i would like to install package in my r clouyd but i am seeing the below query , can you help me out what is causing this issue ?

install.packages("mosaic")
Installing package into ‘/home/rstudio-user/R/x86_64-pc-linux-gnu-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'http://package-proxy/src/contrib/mosaic_1.5.0.tar.gz'
Content type 'application/x-tar' length 3776482 bytes (3.6 MB)
==================================================
downloaded 3.6 MB

Can you explain what your issue is? You are not showing any error message.

This part is just informing you that you have not specified a library location so it is using the default one, this is normal.

1 Like

thanks for helping me out . am trying to install package named "mosaic".

all i got is this one below
install.packages("mosaic")
Installing package into ‘/home/rstudio-user/R/x86_64-pc-linux-gnu-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'http://package-proxy/src/contrib/mosaic_1.5.0.tar.gz'
Content type 'application/x-tar' length 3776482 bytes (3.6 MB)

downloaded 3.6 MB

  • installing binary package ‘mosaic’ ...
  • DONE (mosaic)

The downloaded source packages are in
‘/tmp/Rtmp3juN7k/downloaded_packages’

i would like to install this package and i am getting the above message ? can you help me out ?

It looks like the installation was successful. What happens if you run the code

library(mosaic)

If no error is returned by that, then you can use mosaic in a normal manner.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.