1. <tfoot id='DUzdI'></tfoot>

    <i id='DUzdI'><tr id='DUzdI'><dt id='DUzdI'><q id='DUzdI'><span id='DUzdI'><b id='DUzdI'><form id='DUzdI'><ins id='DUzdI'></ins><ul id='DUzdI'></ul><sub id='DUzdI'></sub></form><legend id='DUzdI'></legend><bdo id='DUzdI'><pre id='DUzdI'><center id='DUzdI'></center></pre></bdo></b><th id='DUzdI'></th></span></q></dt></tr></i><div id='DUzdI'><tfoot id='DUzdI'></tfoot><dl id='DUzdI'><fieldset id='DUzdI'></fieldset></dl></div>

    • <bdo id='DUzdI'></bdo><ul id='DUzdI'></ul>

    <small id='DUzdI'></small><noframes id='DUzdI'>

    1. <legend id='DUzdI'><style id='DUzdI'><dir id='DUzdI'><q id='DUzdI'></q></dir></style></legend>

      将 RMySQL 包添加到 R 失败(在 Windows 上)?

      adding RMySQL package to R fails (on Windows)?(将 RMySQL 包添加到 R 失败(在 Windows 上)?)

      1. <small id='OYPuy'></small><noframes id='OYPuy'>

      2. <tfoot id='OYPuy'></tfoot>
        • <bdo id='OYPuy'></bdo><ul id='OYPuy'></ul>

                <tbody id='OYPuy'></tbody>
              <i id='OYPuy'><tr id='OYPuy'><dt id='OYPuy'><q id='OYPuy'><span id='OYPuy'><b id='OYPuy'><form id='OYPuy'><ins id='OYPuy'></ins><ul id='OYPuy'></ul><sub id='OYPuy'></sub></form><legend id='OYPuy'></legend><bdo id='OYPuy'><pre id='OYPuy'><center id='OYPuy'></center></pre></bdo></b><th id='OYPuy'></th></span></q></dt></tr></i><div id='OYPuy'><tfoot id='OYPuy'></tfoot><dl id='OYPuy'><fieldset id='OYPuy'></fieldset></dl></div>
              <legend id='OYPuy'><style id='OYPuy'><dir id='OYPuy'><q id='OYPuy'></q></dir></style></legend>
                本文介绍了将 RMySQL 包添加到 R 失败(在 Windows 上)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我不知道为什么我的 RMySQL 包无法安装 - 这是我得到的:

                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
                

                我不认为这是 MySQL 安装的问题,因为正确的值似乎在注册表中:

                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!

                推荐答案

                基本流程描述这里,但是有几个提示,所以我将描述整个解决方案(如果需要,请更改 R 版本和路径):

                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):

                1. 从此处
                2. 安装最新的 RTools
                3. 安装MySQL或mysql的头文件和库文件
                4. 创建或编辑文件 C:\Program Files\R\R-2.12.1\etc\Renviron.site 并添加类似 MYSQL_HOME=C:/mysql 的行(你的mysql文件的路径)
                5. 将 libmysql.lib 从 mysql/lib 复制到 mysql/lib/opt 以满足依赖项.
                6. 将 libmysql.dll 复制到 C:\Program Files\R\R-2.12.1\binwindows/system32 目录.
                7. 运行 install.packages('RMySQL',type='source') 并等待编译结束.
                1. Install latest RTools from here
                2. install MySQL or header and library files of mysql
                3. create or edit file C:\Program Files\R\R-2.12.1\etc\Renviron.site and add line like MYSQL_HOME=C:/mysql (path to your mysql files)
                4. copy libmysql.lib from mysql/lib to mysql/lib/opt to meet dependencies.
                5. copy libmysql.dll to C:\Program Files\R\R-2.12.1\bin or to windows/system32 directory.
                6. run install.packages('RMySQL',type='source') and wait while compilation will end.

                这在 Windows 7 64 位上对我有用,所以 32 位版本应该没有问题

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

                最初发布在此处(类似问题).

                Initialy posted here (similar question).

                这篇关于将 RMySQL 包添加到 R 失败(在 Windows 上)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                SQL query to group by day(按天分组的 SQL 查询)
                What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
              • <legend id='dF4kU'><style id='dF4kU'><dir id='dF4kU'><q id='dF4kU'></q></dir></style></legend>

                    <bdo id='dF4kU'></bdo><ul id='dF4kU'></ul>

                        <tfoot id='dF4kU'></tfoot>
                      • <small id='dF4kU'></small><noframes id='dF4kU'>

                        • <i id='dF4kU'><tr id='dF4kU'><dt id='dF4kU'><q id='dF4kU'><span id='dF4kU'><b id='dF4kU'><form id='dF4kU'><ins id='dF4kU'></ins><ul id='dF4kU'></ul><sub id='dF4kU'></sub></form><legend id='dF4kU'></legend><bdo id='dF4kU'><pre id='dF4kU'><center id='dF4kU'></center></pre></bdo></b><th id='dF4kU'></th></span></q></dt></tr></i><div id='dF4kU'><tfoot id='dF4kU'></tfoot><dl id='dF4kU'><fieldset id='dF4kU'></fieldset></dl></div>

                            <tbody id='dF4kU'></tbody>