Why did R put downloaded packages in the temp folder?

When I load some external libraries into R, using install.packages("package") the package is placed R\Libraryin my installation directory, but I get an additional message on my console that

The downloaded binary packages are in
    C:\Users\robert\AppData\Local\Temp\RtmpGcPSi1\downloaded_packages

Why does R put the binary package in Tempand the packages in Temp are different from mine R\Library\package?

+4
source share

Source: https://habr.com/ru/post/1625927/


All Articles