I am installing rstudio for the first time and its giving me a wierd update

install.packages("tidyverse")
WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:

https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ‘C:/Users/USER/AppData/Local/R/win-library/4.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/4.4/tidyverse_2.0.0.zip'
Content type 'application/zip' length 431493 bytes (421 KB)
downloaded 421 KB
PLEASE I AM NEW HERE, ANY HELP FOR ME FOR ABOVE CONCERN?

I don't see any error message in the output that you posted. What happens if you execute

library(tidyverse)

install.packages("tidyverse")
After I run the above code, it returns the below information:

WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:
https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ‘C:/Users/USER/AppData/Local/R/win-library/4.4’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/4.4/tidyverse_2.0.0.zip'
Content type 'application/zip' length 431493 bytes (421 KB)
downloaded 421 KB

package ‘tidyverse’ successfully unpacked and MD5 sums checked

Again, I don't see any error message. What happens when you run

library(tidyverse)

After executing library(tidyverse). This is what I get,

:information_source: Use the conflicted package to force all conflicts to become errors.

Here is the complete output I get when I run library(tidyverse)

> library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.1     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.1
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package to force all conflicts to become errors

I think you get the same output and that you have successfully installed tidyverse.

1 Like

Did this solve your problem?

1 Like

Windows needs Rtools to install packages.
See RTools: Toolchains for building R and R packages from source on Windows

1 Like

Thanks very much for the clarification. When I saw the conflict message, I thought something went amiss.
grateful