Hi, I am using Ubuntu within Mac (Apple M3, OS Sequoia) based on the Lima distribution. Details here, https://lima-vm.io/docs/usage Now within that Ubuntu I installed R based on guidance available in https://www.digitalocean.com/community/tutorials/how-to-install-r-on-ubuntu-20-04 However whenever I run R, I stagely get any error message stating that Error in library(dplyr) : there is no package called ?dplyr? If I try to install dplyr, or any other package, I get error
install.packages('dplyr')
Installing package into ?/home/aaa.linux/R/aarch64-unknown-linux-gnu-library/4.4? (as ?lib? is unspecified) also installing the dependencies ?utf8?, ?pkgconfig?, ?withr?, ?cli?, ?generics?, ?glue?, ?lifecycle?, ?magrittr?, ?pillar?, ?R6?, ?rlang?, ?tibble?, ?tidyselect?, ?vctrs? trying URL 'https://cloud.r-project.org/src/contrib/utf8_1.2.6.tar.gz' Content type 'application/x-gzip' length 243856 bytes (238 KB) ================================================== downloaded 238 KB trying URL 'https://cloud.r-project.org/src/contrib/pkgconfig_2.0.3.tar.gz' Content type 'application/x-gzip' length 6080 bytes ================================================== downloaded 6080 bytes trying URL 'https://cloud.r-project.org/src/contrib/withr_3.0.2.tar.gz' Content type 'application/x-gzip' length 103240 bytes (100 KB) ================================================== downloaded 100 KB trying URL 'https://cloud.r-project.org/src/contrib/cli_3.6.5.tar.gz' Content type 'application/x-gzip' length 640240 bytes (625 KB) ================================================== downloaded 625 KB trying URL 'https://cloud.r-project.org/src/contrib/generics_0.1.4.tar.gz' Content type 'application/x-gzip' length 47224 bytes (46 KB) ================================================== downloaded 46 KB trying URL 'https://cloud.r-project.org/src/contrib/glue_1.8.0.tar.gz' Content type 'application/x-gzip' length 126682 bytes (123 KB) ================================================== downloaded 123 KB trying URL 'https://cloud.r-project.org/src/contrib/lifecycle_1.0.4.tar.gz' Content type 'application/x-gzip' length 107656 bytes (105 KB) ================================================== downloaded 105 KB trying URL 'https://cloud.r-project.org/src/contrib/magrittr_2.0.3.tar.gz' Content type 'application/x-gzip' length 267074 bytes (260 KB) ================================================== downloaded 260 KB trying URL 'https://cloud.r-project.org/src/contrib/pillar_1.11.0.tar.gz' Content type 'application/x-gzip' length 409321 bytes (399 KB) ================================================== downloaded 399 KB trying URL 'https://cloud.r-project.org/src/contrib/R6_2.6.1.tar.gz' Content type 'application/x-gzip' length 64507 bytes (62 KB) ================================================== downloaded 62 KB trying URL 'https://cloud.r-project.org/src/contrib/rlang_1.1.6.tar.gz' Content type 'application/x-gzip' length 767928 bytes (749 KB) ================================================== downloaded 749 KB trying URL 'https://cloud.r-project.org/src/contrib/tibble_3.3.0.tar.gz' Content type 'application/x-gzip' length 588671 bytes (574 KB) ================================================== downloaded 574 KB trying URL 'https://cloud.r-project.org/src/contrib/tidyselect_1.2.1.tar.gz' Content type 'application/x-gzip' length 103591 bytes (101 KB) ================================================== downloaded 101 KB trying URL 'https://cloud.r-project.org/src/contrib/vctrs_0.6.5.tar.gz' Content type 'application/x-gzip' length 969066 bytes (946 KB) ================================================== downloaded 946 KB trying URL 'https://cloud.r-project.org/src/contrib/dplyr_1.1.4.tar.gz' Content type 'application/x-gzip' length 1207521 bytes (1.2 MB) ================================================== downloaded 1.2 MB Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted Error in library(dplyr) : there is no package called ?dplyr? Calls: suppressMessages -> withCallingHandlers -> library Execution halted The downloaded source packages are in ?/tmp/RtmpDzNcc2/downloaded_packages? There were 15 warnings (use warnings() to see them) Could you please help to resolve this issue? Thanks for your time and suggestions.