clu*_*ter 6 windows command-line path ghostscript
我应该怎么做才能通过其调用名称在Windows中调用Ghostscript?我将Ghostscript bin文件夹添加到Windows PATH和Path变量,但它不起作用,'gswin32c.exe'和'gswin32c'都没有.注销然后重新登录也没有用.我该如何解决这个问题?也许我使用了错误的调用名称?
有几种可能性.列出两个最常见的:
c:\full\path\to\gswin32c.exe
应该永远有效.对于64位系统,请使用c:\full\path\to\gswin64c.exe
.%path%
环境变量之前重新启动.cmd
窗口并(假设您的Ghostscript安装结束c:\path\to\gs
...)然后键入set path=c:\path\to\gs\gs9.02\bin;%path%
.从这个相同的cmd窗口,您现在可以简单地gswin32c
用来启动Ghostscript(gswin64c
在64位Windows上使用)...