[R-SIG-Mac] Problems in install some packages in R 4.2
Simon Urbanek
@|mon@urb@nek @end|ng |rom R-project@org
Thu May 12 02:08:24 CEST 2022
José,
given your earlier attempts I suspect you may have broken your library by installing the incorrect .tgz package binaries by hand. There are two different Mac architectures now so the package must match your R so it appears you may have installed tibble for the wrong Mac architecture.
You can fix your library by letting R re-install all packages automatically via
install.packages(rownames(installed.packages()), type='binary')
FWIW there was a big back-log that has now cleared, but may take a bit to propagate through the CRAN mirrors, so if your mirror is behind you may want to use the master Mac repository:
install.packages(rownames(installed.packages()), type='binary', repo="https://mac.R-project.org")
Cheers,
Simon
> On 12/05/2022, at 10:16 AM, José Carlos Guerrero Antúnez <jcgantunez using gmail.com> wrote:
>
> Hi Simon,
>
> Although I was able to install ggplot2 when activating I get this error message.
>
> What can I do now to solve this problem?
>
> Thank you very much.
>
> > library(ggplot2)
> Error: package or namespace load failed for ‘ggplot2’ in dyn.load(file, DLLpath = DLLpath, ...):
> unable to load shared object '/Library/Frameworks/R.framework/Versions/4.2/Resources/library/tibble/libs/tibble.so':
> dlopen(/Library/Frameworks/R.framework/Versions/4.2/Resources/library/tibble/libs/tibble.so, 6): no suitable image found. Did find:
> /Library/Frameworks/R.framework/Versions/4.2/Resources/library/tibble/libs/tibble.so: mach-o, but wrong architecture
> /Library/Frameworks/R.framework/Versions/4.2/Resources/library/tibble/libs/tibble.so: mach-o, but wrong architecture
>
>
>
> El lun, 9 may 2022 a las 23:47, Simon Urbanek (<simon.urbanek using r-project.org>) escribió:
> José,
>
> can you be more specific as of what you did and exact output? I would recommend using a simple
>
> install.packages("ggplot2",type="binary")
>
> in R.
>
> Cheers,
> Simon
>
>
> > On 10/05/2022, at 12:30 PM, José Carlos Guerrero Antúnez <jcgantunez using gmail.com> wrote:
> >
> > Hi,
> >
> > When I upgraded to R version 4.2 (Platform: x86_64-apple-darwin17.0
> > (64-bit)), I was having problems installing certain packages (e.g. ggplot2,
> > Hmisc, devtools) and their dependencies.
> >
> > I got this error message "installation of package ‘package’ had non-zero
> > exit status.
> >
> > I have tried several ways to install (e.g. Package Archive file (.tgz).
> >
> > Any ideas on how to solve this problem, thank you very much.
> >
> >
> > --
> > José Carlos Guerrero
> >
> > [[alternative HTML version deleted]]
> >
> > _______________________________________________
> > R-SIG-Mac mailing list
> > R-SIG-Mac using r-project.org
> > https://stat.ethz.ch/mailman/listinfo/r-sig-mac
> >
>
>
>
> --
> José Carlos Guerrero
More information about the R-SIG-Mac
mailing list