How to add a dependency to Maven
Add the following ml.dmlc.mxnet : libmxnet-scala-linux-x86_64-gpu maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>libmxnet-scala-linux-x86_64-gpu</artifactId>
<version>0.9.3a</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following ml.dmlc.mxnet : libmxnet-scala-linux-x86_64-gpu gradle dependency to your build.gradle
file:
implementation 'ml.dmlc.mxnet:libmxnet-scala-linux-x86_64-gpu:0.9.3a'
Gradle Kotlin DSL: Add the following ml.dmlc.mxnet : libmxnet-scala-linux-x86_64-gpu gradle kotlin dependency to your build.gradle.kts
file:
implementation("ml.dmlc.mxnet:libmxnet-scala-linux-x86_64-gpu:0.9.3a")
How to add a dependency to SBT Scala
SBT Scala: Add the following ml.dmlc.mxnet : libmxnet-scala-linux-x86_64-gpu sbt scala dependency to your build.sbt
file:
libraryDependencies += "ml.dmlc.mxnet" % "libmxnet-scala-linux-x86_64-gpu" % "0.9.3a"