aaronmarkham commented on a change in pull request #11152: updating Scala IntelliJ tutorial & installation instructions URL: https://github.com/apache/incubator-mxnet/pull/11152#discussion_r199219168
########## File path: docs/install/scala_setup.md ########## @@ -0,0 +1,87 @@ +# Setup the MXNet Package for Scala + +The following instructions are provided for macOS and Ubuntu. Windows is not yet available. + +**Note:** If you use IntelliJ or a similar IDE, you may want to follow the [MXNet-Scala on IntelliJ tutorial](../tutorials/scala/mxnet_scala_on_intellij.html) instead of these instructions. + +## Setup Instructions +**Step 1.** Download the MXNet source. + +```bash +git clone --recursive https://github.com/apache/incubator-mxnet.git mxnet +cd mxnet +``` + +**Step 2.** Install dependencies: + +**macOS Steps** + +```bash +brew update +brew tap caskroom/versions +brew cask install java8 +brew install maven +brew install opencv@2 Review comment: `opencv@2` is tested personally, and I know it works. I know that just `opencv` did not work. Something to do with mxnet having already installed some version... brew wanted to install a later version, then had incompatibilities, etc, etc. You also mention using v2 as a fix here: https://github.com/apache/incubator-mxnet/issues/11193#issuecomment-400460615 ---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
