tidyverse installation problem

hello all, pls i get this message each time i try to install tidyverse.
Installing package into ‘C:/Users/FUTO/AppData/Local/R/win-library/4.3’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/4.3/tidyverse_2.0.0.zip'
Content type 'application/zip' length 430797 bytes (420 KB)
downloaded 420 KB

package ‘tidyverse’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in
C:\Users\FUTO\AppData\Local\Temp\RtmpMH41Tw\downloaded_packages

pls i will be grateful for any help

The messages you get do not mention any errors and they look to me like standard information. What happens if you run

library(tidyverse)

It appears ok and just needs to be done once. Open a new RStudio source panel and

library(tidyverse)

and you may see \dots only a new line. But all the included packages are should now be available to call with library(). On my macOS setup it sometimes loads everything and sometimes it doesn't. To check whether you now have {dplyr}, for examle, you can do

library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union

Created on 2023-11-25 with reprex v2.0.2

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.