简体   繁体   English

安装 Tabulizer 时出错

[英]Error in installing Tabulizer

Using the instructions described in github and installing Java accordingly with Chocolatey -- plus installing rJava and setting the path in R with Sys.setenv(JAVA_HOME = "C:/Program Files/Java/jdk1.8.0_131") -- I've done the following in R:使用github 中描述的说明并使用 Chocolatey 相应地安装rJava加上安装rJava并使用Sys.setenv(JAVA_HOME = "C:/Program Files/Java/jdk1.8.0_131")在 R 中设置路径——我已经在 R 中完成以下操作:

library(ghit)
library(git2r)
ghit::install_github(c("leeper/tabulizerjars", "leeper/tabulizer"), INSTALL_opts = "--no-multiarch", dependencies = c("Depends", "Imports"))

Which is the solution provided in this answer .这是此答案中提供的解决方案。 I get the following error:我收到以下错误:

Error in git2r::init(d) : 
  Error in 'git2r_repository_init': Unable to init repository

Setting the option VERBOSE = TRUE in install_github I get the following additional output:install_github设置选项VERBOSE = TRUE我得到以下附加输出:

Parsing reponame for 'leeper/tabulizerjars'...
Creating local git repository for tabulizerjars in C:\Users\JOOCAR~1\AppData\Local\Temp\RtmpgnitDP\tabulizerjars1643e0126f5...
Error in git2r::init(d) : 
  Error in 'git2r_repository_init': Unable to init repository

I read this answer and it seems that it has to do with my username, which is spaced and has accents.我读了这个答案,它似乎与我的用户名有关,它是间隔的并且有口音。 But how do I configure this?但是我该如何配置呢?


edit: 6/4/2017 1:57 am编辑:2017 年 6 月 4 日上午 1:57

Following user @jaySf answer, I run part of the code of his answer (since I've already installed rJava and devtools ):按照用户@jaySf 的回答,我运行了他回答的部分代码(因为我已经安装了rJavadevtools ):

library(rJava) # load and attach 'rJava' now
devtools::install_github("ropensci/tabulizer", args="--no-multiarch")

And got the following error:并得到以下错误:

> library(rJava) # load and attach 'rJava' now
> devtools::install_github("ropensci/tabulizer", args="--no-multiarch")
Downloading GitHub repo ropensci/tabulizer@master
from URL https://api.github.com/repos/ropensci/tabulizer/zipball/master
Installing tabulizer
Downloading GitHub repo ropensci/tabulizerjars@master
from URL https://api.github.com/repos/ropensci/tabulizerjars/zipball/master
Installing tabulizerjars
"C:/R-34~1.0/bin/x64/R" --no-site-file --no-environ --no-save --no-restore --quiet CMD INSTALL "C:/Users/Joo  \
  Caos/AppData/Local/Temp/Rtmpgh9eJi/devtoolsb3c50925145/ropensci-tabulizerjars-c6cc40e" --library="C:/R-3.4.0/library" --install-tests 

* installing *source* package 'tabulizerjars' ...
** R
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
*** arch - i386
Error: package or namespace load failed for 'tabulizerjars':
 .onLoad failed in loadNamespace() for 'rJava', details:
  call: inDL(x, as.logical(local), as.logical(now), ...)
  error: unable to load shared object 'C:/R-3.4.0/library/rJava/libs/i386/rJava.dll':
  LoadLibrary failure:  %1 is not a valid Win32 application.

Error: loading failed
Execution halted
*** arch - x64
ERROR: loading failed for 'i386'
* removing 'C:/R-3.4.0/library/tabulizerjars'
Installation failed: Command failed (1)
"C:/R-34~1.0/bin/x64/R" --no-site-file --no-environ --no-save --no-restore --quiet CMD INSTALL "C:/Users/Joo  \
  Caos/AppData/Local/Temp/Rtmpgh9eJi/devtoolsb3c4a2835ec/ropensci-tabulizer-a38d957" --library="C:/R-3.4.0/library" --install-tests --no-multiarch 

ERROR: dependency 'tabulizerjars' is not available for package 'tabulizer'
* removing 'C:/R-3.4.0/library/tabulizer'
Installation failed: Command failed (1)

I believe that I might have a problem with my username in the file directory path, but I'm not sure.我相信我在文件目录路径中的用户名可能有问题,但我不确定。 I tried using install_github with ggplot2 --`install_github("wch/ggplot2") -- and it worked fine.我尝试将install_githubggplot2 --`install_github("wch/ggplot2") 一起使用 -- 并且效果很好。 If my guess is correct, how can I edit the file path?如果我的猜测是正确的,我该如何编辑文件路径?


Problem solved问题解决了

I was running R with both 32 bit and 64 bit files installed.我在安装了 32 位和 64 位文件的情况下运行 R。 I cannot clearly state what were the problems in doing this, since as I ran Sys.getenv("R_ARCH") it returned x64 previously, but when I uninstalled the 32 bit files, it ran perfectly well with @jaySf code.我无法清楚地说明这样做的问题是什么,因为当我运行Sys.getenv("R_ARCH")它返回x64 ,但是当我卸载 32 位文件时,它与 @jaySf 代码运行得非常好。

Follow these steps in given order should work:按照给定的顺序执行以下步骤应该可以工作:

install.packages("rJava")
library(rJava) # load and attach 'rJava' now
install.packages("devtools")
devtools::install_github("ropensci/tabulizer", args="--no-multiarch")

I'm using R 3.4.0 on win64, and described the procedure in a former answer .我在 win64 上使用 R 3.4.0,并在以前的答案中描述了该过程。

install.packages("rJava")
library(rJava) # load and attach 'rJava' now
install.packages("devtools")
#run below package first..
devtools::install_github("ropensci/tabulizerjars", args="--no-multiarch") 
devtools::install_github("ropensci/tabulizer", args="--no-multiarch")

You might try:你可以试试:

devtools::install_github("ropensci/tabulizerjars", INSTALL_opts = c("--no-multiarch")) devtools::install_github("ropensci/tabulizer", INSTALL_opts = c("--no-multiarch")) devtools::install_github("ropensci/tabulizerjars", INSTALL_opts = c("--no-multiarch")) devtools::install_github("ropensci/tabulizer", INSTALL_opts = c("--no-multiarch"))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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