install RMySQL for Mac

前端 未结 2 1856
野趣味
野趣味 2021-01-22 10:29

I get below error when I try to install Mysql package (MAC OS)

install.packages(\'RMySQL\')

  package ‘RMySQL’ is available as a source package but not as a bi         


        
2条回答
  •  梦毁少年i
    2021-01-22 11:02

    Installing from source worked well for me. For those who are new to R, the way to install from source is:

    install.packages('RMySQL', type='source') 
    

提交回复
热议问题