problema con instalación de R

tengo problemas con r en mi ordenador
me arroja a cada rato que falta un paquete, y nunca se soluciona.
por favor, si me pueden ayudarLoading required package: RcmdrMisc
Error: package or namespace load failed for ‘RcmdrMisc’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘pillar’
Error: package ‘RcmdrMisc’ could not be loaded

Hi @Esteban17, welcome! :handshake:

# Trata te poner las preguntas en inglés para que puedas tener ayuda de más usuarios
# Try to put the questions in English so that you can get help from more users.

The error said that you need install pillar package.
Run this:

install.packages('pillar')
library(pillar)

Try this and see what happens.

Loading required package: RcmdrMisc
Error: package or namespace load failed for ‘RcmdrMisc’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘readxl’
Error: package ‘RcmdrMisc’ could not be loaded.

Apparently there is a problem with RcmdrMisc, it tells me that x (whatever) package is missing, but I install it and it asks for another one, successively and so on.
I'm desperate, I can't solve it. Thanks for your help

If you install RcmdrMisc and show errors something is wrong with your R and Rstudio.

Think in re install Rstudio... or not know if a super R user have good solution for this.

So then you could try

install.packages("readxl")

and rinse and repeat until you get all the necessary packages installed.

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.