简体   繁体   中英

R: installing RMySQL package failed

I am trying to install RMySQL package in R, by install.packages("RMySQL") , but it complains that it couldn't find the include libraries.

Configuration error:
 could not find the MySQL installation include and/or library
 directories.  Manually specify the location of the MySQL
 libraries and the header files and re-run R CMD INSTALL.

So, then I installed mysql in Ubuntu as follows:

sudo apt-get install mysql-client

This installation worked fine, but still I get the same error in R. Can someone point me to the right direction please?

I've checked this

http://packages.ubuntu.com/search?keywords=r-cran-rmysql

so you should have r-cran-rmysql package inside your Ubuntu packages list. Therefore

  • from inside R remove DBI , RMySQL packages,
  • then sudo apt-get install r-cran-rmysql

HTH

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM