Windows R:grImport ghostscript错误'状态127'

时间:2016-02-07 17:15:13

标签: r ghostscript grimport

我在R(Windows,Rstudio)中安装了Ghostscript和grImport。我正在关注tutorial,但我立刻得到了错误,

> library(grImport)
Loading required package: grid
Loading required package: XML
> PostScriptTrace("petal.ps")
Error in PostScriptTrace("petal.ps") : 
  status 127 in running command 'gswin32c.exe -q -dBATCH -dNOPAUSE -sDEVICE=ps2write -sOutputFile=C:\Users\UsrNm\AppData\Local\Temp\RtmpsXXlWA\file1b5c623f48de -sstdout=petal.ps.xml capturepetal.ps'
In addition: Warning message:
running command 'gswin32c.exe -q -dBATCH -dNOPAUSE -sDEVICE=ps2write -sOutputFile=C:\Users\UsrNm\AppData\Local\Temp\RtmpsXXlWA\file1b5c623f48de -sstdout=petal.ps.xml capturepetal.ps' had status 127

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:3)

我在Windows 10下遇到了同样的问题,我通过手动设置ghostscript的路径解决了这个问题:

Sys.setenv(R_GSCMD = normalizePath("C:/gs/gs9.20/bin/gswin32c.exe"))