我是靠谱客的博主 傻傻故事,最近开发中收集的这篇文章主要介绍r mysql追加,将RMySQL程序包添加到R失败(在Windows上)?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

I can't figure out why my RMySQL package won't install - here's what I get:

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

trying URL 'http://cran.mirrors.hoobly.com/src/contrib/RMySQL_0.7-5.tar.gz'

Content type 'application/x-gzip' length 160769 bytes (157 Kb)

opened URL

downloaded 157 Kb

* installing *source* package 'RMySQL' ...

ERROR: configuration failed for package 'RMySQL'

* removing 'C:/PROGRA~1/R/R-212~1.0/library/RMySQL'

The downloaded packages are in '(foo)'

Warning message:

In install.packages("RMySQL", type = "source") : installation of package 'RMySQL' had non-zero exit status

I don't think it's a problem with the MySQL install, as the right values seem to be in the registry:

> Sys.getenv('MYSQL_HOME')

MYSQL_HOME "C:/PROGRA~1/MySQL/MYSQLS~1.1/"

> readRegistry("SOFTWARE\MySQL AB", hive="HLM", maxdepth=2)

$`MySQL Server 5.1`

$`MySQL Server 5.1`$DataLocation

[1] "C:\Documents and Settings\All Users\Application Data\MySQL\MySQL Server 5.1\"

$`MySQL Server 5.1`$FoundExistingDataDir

[1] "0"

$`MySQL Server 5.1`$Location

[1] "C:\Program Files\MySQL\MySQL Server 5.1\"

$`MySQL Server 5.1`$Version

[1] "5.1.54"

Puzzled. Any help would be greatly appreciated!

解决方案

The basic process is described here, but there are several hints, So I will describe the whole solution (please change the R version and paths if needed):

Install latest RTools from here

install MySQL or header and library files of mysql

create or edit file C:Program FilesRR-2.12.1etcRenviron.site and add line like MYSQL_HOME=C:/mysql (path to your mysql files)

copy libmysql.lib from mysql/lib to mysql/lib/opt to meet dependencies.

copy libmysql.dll to C:Program FilesRR-2.12.1bin or to windows/system32 directory.

run install.packages('RMySQL',type='source') and wait while compilation will end.

This worked for me on Windows 7 64 bit, so there should be no problems with 32 bit versions

Initialy posted here (similar question).

最后

以上就是傻傻故事为你收集整理的r mysql追加,将RMySQL程序包添加到R失败(在Windows上)?的全部内容,希望文章能够帮你解决r mysql追加,将RMySQL程序包添加到R失败(在Windows上)?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部