/bin/bash:否:未找到命令:尝试将 make:model 命令与 J.DepP 一起使用时
/bin/bash: no: command not found: when trying to use a make:model command with J.DepP
尝试从 J.DepP 生成 Makefile 运行 时,我一直收到 /bin/bash: no: command not found。有谁知道如何解决这一问题?有没有要安装的 no
程序?
// Command that fails (split into 2 lines for readability)
find /home/jdepp-2015-10-05/KNBC_v1.0_090925/corpus1 -type f -name "KN*" | LC_ALL=C sort | xargs cat |
no /home/jdepp-2015-10-05/tools/knbc2kyoto.py KNP | no /home/jdepp-2015-10-05/tools/replace_pos.py /home/linuxbrew/.linuxbrew/bin/mecab -d /home/linuxbrew/.linuxbrew/lib/mecab/dic/unidic > model/knbc/train.JDP.euc
/bin/bash: no: command not found
/bin/bash: no: command not found
xargs: cat: terminated by signal 13
make: *** [Makefile:948: knbc] Error 127
这是我遇到的错误,它试图 运行 no
命令。当我在终端输入 no
时,它不存在。 Makefile的第948行就是上面的命令。
有人成功安装 J.DepP
并修复了这个错误吗?
这实际上是一个问题,因为 python 没有安装并且 J.DepP 的 makefile 没有 return 关键依赖项失败。
安装 python、运行 make clean && ./configure
问题消失。
尝试从 J.DepP 生成 Makefile 运行 时,我一直收到 /bin/bash: no: command not found。有谁知道如何解决这一问题?有没有要安装的 no
程序?
// Command that fails (split into 2 lines for readability)
find /home/jdepp-2015-10-05/KNBC_v1.0_090925/corpus1 -type f -name "KN*" | LC_ALL=C sort | xargs cat |
no /home/jdepp-2015-10-05/tools/knbc2kyoto.py KNP | no /home/jdepp-2015-10-05/tools/replace_pos.py /home/linuxbrew/.linuxbrew/bin/mecab -d /home/linuxbrew/.linuxbrew/lib/mecab/dic/unidic > model/knbc/train.JDP.euc
/bin/bash: no: command not found
/bin/bash: no: command not found
xargs: cat: terminated by signal 13
make: *** [Makefile:948: knbc] Error 127
这是我遇到的错误,它试图 运行 no
命令。当我在终端输入 no
时,它不存在。 Makefile的第948行就是上面的命令。
有人成功安装 J.DepP
并修复了这个错误吗?
这实际上是一个问题,因为 python 没有安装并且 J.DepP 的 makefile 没有 return 关键依赖项失败。
安装 python、运行 make clean && ./configure
问题消失。