我正在尝试在Ubuntu 64位中安装Grobid。
引自
https://grobid.readthedocs.io/en/latest/Install-Grobid/
$/GROBID_LATEST_0.5.1/grobid-0.5.1$ ./gradlew clean install
FAILURE: Build failed with an exception.
* What went wrong:
Failed to capture snapshot of input files for task ':grobid-core:compileJava' >property 'classpath' during up-to-date check.
> Error snapshotting jar [wipo-analysers-0.0.2.jar]
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
* Get more help at https://help.gradle.org
BUILD FAILED in 0s
6 actionable tasks: 1 executed, 5 up-to-date
$/GROBID_LATEST_0.5.1/grobid-0.5.1$
请帮助我如何解决这个问题。
最佳答案
请按照以下步骤解决您的问题。
$java -version
删除Java的最新版本(即10或11),因为gradle与Java 10和11不兼容.Instal Java 7/8/9。
$sudo apt-get purge openjdk-\*
Then
$ sudo apt-get update
$apt-cache search openjdk
$sudo apt-get install openjdk-8-jre openjdk-8-jdk
$cd grobid
$./gradlew run
关于java - 在Grobid中使用Gradle时出现以下错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51138099/