我试图通过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
内部删除DBI
,RMySQL
软件包,
然后sudo apt-get install r-cran-rmysql
高温超导
关于mysql - R:安装RMySQL软件包失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23281739/