R Language

less than 1 minute read

Published:


Happened: 2023-03-30 | Sloved: 2023-04-02
Problem:
  1. Facing error when installing and library package “conjoint”, shows
    Error: package or namespace load failed for conjoint in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
     there is no package called robustbase
    
  2. As istalling robustbase package, by aswering Yes, the Warning comes out,
    Warning in install.packages :
      installation of package robustbase had non-zero exit status
    
Tried:
remove.packages("robustbase")
remove.packages("conjoint")
install.packages("robustbase")
install.packages("conjoint")
Slolution: Answer NO when asking “Do you want to install from sources the package which needs compilation? (Yes/no/cancel)”
> install.packages("robustbase")

  There is a binary version available but the source version is later:
           binary source needs_compilation
robustbase 0.95-0 0.95-1              TRUE

Do you want to install from sources the package which needs compilation? (Yes/no/cancel) No
trying URL 'https://cran.rstudio.com/bin/macosx/big-sur-arm64/contrib/4.2/robustbase_0.95-0.tgz'
Content type 'application/x-gzip' length 3170576 bytes (3.0 MB)
==================================================
downloaded 3.0 MB


The downloaded binary packages are in
	/var/folders/lk/z3v1ygw16v1cg_hwgwc52br80000gp/T//RtmpqLN9mc/downloaded_packages

Leave a Comment

Your email address will not be published. Required fields are marked *

Loading...