Nutch-Cygwin 如何设置JAVA_HOME

发布于 2025-01-07 16:13:59 字数 634 浏览 1 评论 0原文

我正在尝试使用 Cygwin 运行 Nutch。我在设置 JAVA_HOME 时遇到问题。

 $ export JAVA_HOME='/cygdrive/f/program files/java/jdk1.6.0_21'

当我运行 nutch 命令时

$ bin/nutch crawl

,我发现

cygpath: can't convert empty path
bin/nutch: line 268: /cygdrive/f/program: No such file or directory
bin/nutch: line 268: exec: /cygdrive/f/program: cannot execute: No such file or directory

程序和文件之间的空格导致了问题 /cygdrive/f/**program files**/java/jdk1.6.0_21

有没有办法让我可以逃离空间吗?有更好的方法吗?谢谢

编辑

在一天结束时,我不得不在另一个目录中重新安装 java,并且名称中没有空格。

i am trying to run Nutch with Cygwin. I am having problems setting the JAVA_HOME.

 $ export JAVA_HOME='/cygdrive/f/program files/java/jdk1.6.0_21'

When i run nutch command

$ bin/nutch crawl

i get

cygpath: can't convert empty path
bin/nutch: line 268: /cygdrive/f/program: No such file or directory
bin/nutch: line 268: exec: /cygdrive/f/program: cannot execute: No such file or directory

It appears that the space between program and files causes the problem /cygdrive/f/**program files**/java/jdk1.6.0_21

Is there a way that i can escape the space? Is there a better way to do this? Thanks

EDIT

At the end of the day, i had to re-install java in another directory with no space in its name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风渺 2025-01-14 16:13:59

尝试在以下位置使用双引号:

export JAVA_HOME="/cygdrive/f/program files/java/jdk1.6.0_21"

以及脚本使用 JAVA_HOME 变量的位置,例如:

JAVA="$JAVA_HOME"/bin/java

问候

Try to use double quotes in:

export JAVA_HOME="/cygdrive/f/program files/java/jdk1.6.0_21"

and wherever the script uses the JAVA_HOME variable, for example:

JAVA="$JAVA_HOME"/bin/java

Regards

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文