I trying to import last version of org.nd4j:nd4j-api:0.4-rc3.7
, but there is only org.nd4j:nd4j-api:0.4-rc1.2
. So, how to add last version of nd4j?
Asked
Active
Viewed 79 times
-1
-
Do you use maven too? – sschrass Dec 27 '15 at 21:35
-
Yes. Everyone downvote me, but no one answer: reload pom.xml – AshFTW Jun 19 '17 at 23:57
1 Answers
2
Add this to your pom.xml
<dependency>
<groupId>org.nd4j</groupId>
<artifactId>nd4j-api</artifactId>
<version>0.4-rc3.7</version>
</dependency>
Make sure your maven has access to maven central.

sschrass
- 7,014
- 6
- 43
- 62
-
-
1configure it as repository in the `settings.xml` of maven (user-dir\.m2\settings.xml) – sschrass Dec 28 '15 at 12:03