aaronmarkham commented on a change in pull request #12827: Update scala 
intellij tutorial
URL: https://github.com/apache/incubator-mxnet/pull/12827#discussion_r225366020
 
 

 ##########
 File path: docs/tutorials/scala/mxnet_scala_on_intellij.md
 ##########
 @@ -347,6 +379,30 @@ Library not loaded: 
/usr/local/opt/opencv/lib/libopencv_calib3d.x.x.dylib
 This can be resolved be installing OpenCV.
 
 
+### Using MXNet from source
+
+If you chose to "Build from Source" when following the [install 
instructions](https://mxnet.incubator.apache.org/install/index.html), you can 
use your custom build instead of the build from maven.  Use your build by 
editing the `pom.xml` file and replacing the `org.apache.mxnet` dependency with 
the following:
+
+```
+      <groupId>org.apache.mxnet</groupId>
+      <artifactId>mxnet-core_${scala.version}-${platform}-sources</artifactId>
+      <version>1.3.0</version>
+      <scope>system</scope>
+      
<systemPath>/PathToMXNetSource/incubator-mxnet/scala-package/assembly/osx-x86_64-cpu/target/mxnet-full_2.11-osx-x86_64-cpu-1.3.1-SNAPSHOT-sources.jar</systemPath>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.mxnet</groupId>
+      <artifactId>mxnet-full_${scala.version}-${platform}</artifactId>
+      <version>1.3.0</version>
 
 Review comment:
   skip version?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to