R上的install.packages“ stringi”问题

问题描述

在Windows 10上,RStudio。我尝试使用命令install.packages,但此消息却消失了:

> install.packages ("stringi")
 There is a binary version available but the source version is later:
        binary source needs_compilation
stringi  1.4.6  1.5.3              TRUE

installing the source package ‘stringi’

trying URL 'https://cran.rstudio.com/src/contrib/stringi_1.5.3.tar.gz'
Content type 'application/x-gzip' length 7293930 bytes (7.0 MB)
downloaded 7.0 MB

* installing *source* package 'stringi' ...
** package 'stringi' successfully unpacked and MD5 sums checked
** using staged installation
** libs
C:/Users/Natusha/Google Drive ([email protected])/R/Rtools/mingw_64/bin/g++  -std=gnu++11 -I"C:/Users/Natusha/GOOGLE~2.COM/R/R-36~1.1/include" -DNDEBUG -I. -Iicu61/ -Iicu61/unicode -Iicu61/common -Iicu61/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONfig_USE_LOCAL -DU_TOOLUTIL_IMPLEMENTATION -DNDEBUG -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DU_USE_STRTOD_L=0         -O2 -Wall  -mtune=generic -c stri_pad.cpp -o stri_pad.o
sh: -c: line 0: Syntax error near unexpected token `('
sh: -c: line 0: `C:/Users/Natusha/Google Drive ([email protected])/R/Rtools/mingw_64/bin/g++  -std=gnu++11 -I"C:/Users/Natusha/GOOGLE~2.COM/R/R-36~1.1/include" -DNDEBUG -I. -Iicu61/ -Iicu61/unicode -Iicu61/common -Iicu61/i18n -DU_STATIC_IMPLEMENTATION -DU_COMMON_IMPLEMENTATION -DU_I18N_IMPLEMENTATION -DUCONfig_USE_LOCAL -DU_TOOLUTIL_IMPLEMENTATION -DNDEBUG -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DU_USE_STRTOD_L=0         -O2 -Wall  -mtune=generic -c stri_pad.cpp -o stri_pad.o'
make: *** [C:/Users/Natusha/GOOGLE~2.COM/R/R-36~1.1/etc/x64/Makeconf:215: stri_pad.o] Error 1
ERROR: compilation Failed for package 'stringi'
* removing 'C:/Users/Natusha/Google Drive ([email protected])/R/R-3.6.1/library/stringi'
* restoring prevIoUs 'C:/Users/Natusha/Google Drive ([email protected])/R/R-3.6.1/library/stringi'
Warning in install.packages :
  installation of package ‘stringi’ had non-zero exit status

The downloaded source packages are in
    ‘C:\Users\Natusha\AppData\Local\Temp\RtmpuSXwbu\downloaded_packages’

我该怎么办?我尝试将文件夹直接下载并粘贴到库中,但是没有用。 我也尝试过

install.packages("stringi",type = "source")

options(install.packages.check.source = "no")

但是出现相同的消息。 有人可以帮我吗?

解决方法

如果您使用的是Windows,则如果源安装失败(并且您不希望使用源软件包),则坚持使用 binary 软件包。

install.packages ("stringi",type = "win.binary")