package "autoRestart" not available for R version 3.5.2

Hi !
I start on R and I have a problem to install R cmdr.
I downloaded it but when I want to open it with Library (), it tells me that the package "autoRestart" can not be found:

> library("FactoMineR", lib.loc="/Library/Frameworks/R.framework/Versions/3.5/Resources/library")
> library ("RcmdrPlugin.FactoMineR", lib.loc = "/ Library / Frameworks / R.framework / Versions / 3.5 / Resources / library")
Error: package or namespace load failed for 'RcmdrPlugin.FactoMineR':
  .onAttach failed in attachNamespace () for 'RcmdrPlugin.FactoMineR', details:
   call: get (x, envir = RcmdrEnv (), mode = mode, inherits = FALSE)
   error: 'autoRestart' object not found

But when I try to download the "autoRestart" package, R tells me:

Warning in install.packages:
   package 'autoRestart' is not available (for R version 3.5.2)

I do not know what to do...
(I work on MAC...)

Try

install.packages("RcmdrPlugin.FactoMineR")
1 Like

A post was split to a new topic: .Error in library(...) : there is no package called ‘...’ can not be found

Try, first, a fresh installation

install.packages("FactoMineR")

which should install the plugin as a dependency.

You can install the plugin separately

install.packages("RcmdrPlugin.FactoMineR")

but it shouldn't be necessary. (I just did it on Mojave)

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