无法在终端或命令行中运行cd /path/to/stanford-corenlp java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9000 -timeout 15000
时间: 2023-11-06 07:04:11 浏览: 167
stanfordcorenlp-python:使用Jpype的Stanford-CoreNLP版本3.9.1的Python包装器
这个错误提示可能是因为你在终端或命令行中直接复制了这段命令,导致其中的换行符被忽略了。正确的做法是将这个命令拆成两行,或者在命令之间加上分号,如下所示:
```
cd /path/to/stanford-corenlp
java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9000 -timeout 15000
```
或者
```
cd /path/to/stanford-corenlp; java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port 9000 -timeout 15000
```
这样就可以分别执行两个命令了。注意,其中的 /path/to/stanford-corenlp 需要替换成 stanford-corenlp 所在的实际路径。
阅读全文