Mac OS X R error “ld: warning: directory not found for option”

前端 未结 7 1475
梦毁少年i
梦毁少年i 2020-12-01 04:38

I am trying to install an R package from source, but getting an error:

* installing *source* package ‘mclust’ ...
** package ‘mclust’ successfully unpacked a         


        
7条回答
  •  眼角桃花
    2020-12-01 05:32

    The solution was to re-install problematic packages with Homebrew.

    $ brew uninstall --ignore-dependencies --force openssl
    $ brew install openssl
    
    $ brew uninstall --ignore-dependencies --force readline  
    $ brew install readline
    

提交回复
热议问题