我试图通过RMySQL在R中安装install.packages("RMySQL")软件包,但是它抱怨找不到包含库。

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.


因此,然后我在Ubuntu中安装了mysql,如下所示:

sudo apt-get install mysql-client


此安装工作正常,但在R中仍然出现相同的错误。有人可以指出我正确的方向吗?

最佳答案

我已经检查过了

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

因此,您应该在Ubuntu软件包列表中包含r-cran-rmysql软件包。因此


R内部删除DBIRMySQL软件包,
然后sudo apt-get install r-cran-rmysql


高温超导

关于mysql - R:安装RMySQL软件包失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23281739/

10-10 23:29