How to add a dependency to Maven
Add the following ml.dmlc.mxnet : mxnet-full_2.10-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>mxnet-full_2.10-linux-x86_64-gpu</artifactId>
<version>0.1.1</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following ml.dmlc.mxnet : mxnet-full_2.10-linux-x86_64-gpu gradle dependency to your build.gradle
file:
implementation 'ml.dmlc.mxnet:mxnet-full_2.10-linux-x86_64-gpu:0.1.1'
Gradle Kotlin DSL: Add the following ml.dmlc.mxnet : mxnet-full_2.10-linux-x86_64-gpu gradle kotlin dependency to your build.gradle.kts
file:
implementation("ml.dmlc.mxnet:mxnet-full_2.10-linux-x86_64-gpu:0.1.1")
How to add a dependency to SBT Scala
SBT Scala: Add the following ml.dmlc.mxnet : mxnet-full_2.10-linux-x86_64-gpu sbt scala dependency to your build.sbt
file:
libraryDependencies += "ml.dmlc.mxnet" % "mxnet-full_2.10-linux-x86_64-gpu" % "0.1.1"