Error installing tidyverse using R version 4.2.2 in MacBook Air MacOS Big Sur

Dear community,

I'm new using RStudio. I have the version 4.2.2 I'm trying to install tidyverse package using install.packages ("tidyverse"), but I am getting some errors in the process (look below for log).

Log:

trying URL 'https://cran.rstudio.com/bin/macosx/contrib/4.2/tidyverse_1.3.2.tgz'
Content type 'application/x-gzip' length 420896 bytes (411 KB)

downloaded 411 KB

The downloaded binary packages are in
/var/folders/g5/rxfn6x9j1xx7gxj8_bqp3lmc0000gn/T//RtmpHP0ltz/downloaded_packages

Could anyone guide me through this?

There are no error messages here. What happens if you run library(tidyverse)?

Ohhh, thank you for your answer, this is good news.

And in response to your questinon: if I run library(tidyverse) this happens

The downloaded binary packages are in
/var/folders/g5/rxfn6x9j1xx7gxj8_bqp3lmc0000gn/T//RtmpHP0ltz/downloaded_packages

library(tidyverse)
── Attaching packages ───────────────────────────────────────────────────── tidyverse 1.3.2 ──
:heavy_check_mark: ggplot2 3.4.0 :heavy_check_mark: purrr 1.0.1
:heavy_check_mark: tibble 3.1.8 :heavy_check_mark: dplyr 1.0.10
:heavy_check_mark: tidyr 1.3.0 :heavy_check_mark: stringr 1.5.0
:heavy_check_mark: readr 2.1.3 :heavy_check_mark: forcats 1.0.0
── Conflicts ──────────────────────────────────────────────────────── tidyverse_conflicts() ──
:heavy_multiplication_x: dplyr::filter() masks stats::filter()
:heavy_multiplication_x: dplyr::lag() masks stats::lag()

Looks good to me. The section on conflicts just tells you that R will use the filter() and lag() functions from dplyr instead of the functions with the same names from the stats package, which is part of base R.

Thank you very much. I appreciate a lot your help. All the best

This topic was automatically closed 7 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.