1.从github下载
https://github.com/deeplearning4j/deeplearning4j/releases
2.解压出来
打开eclipse,导入maven项目,选择解压后的根目录,就能导入完整的项目
3.跳过test
打开各个项目的pom.xml,补充或者加入
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
4.打开deeplearning4j-parent项目,也就是主项目
运行右键,run as -》maven install,即可编译成功!