Open agilecreativity opened 6 years ago
Thanks for helping to document these steps.
A note that for the latest version of the Scala jars, (that I just committed to master), the old version of opencv has be fixed on the Scala versions. So you will need to do a brew upgrade
to 3.4 on your mac to use.
To clarify: [org.apache.mxnet/mxnet-full_2.11-osx-x86_64-cpu "1.2.1"]
you should be able to do brew install opencv
for [org.apache.mxnet/mxnet-full_2.11-osx-x86_64-cpu "1.2.0"]
- you will have to do brew install opencv@2
using the steps above
Hi,
Here are steps that for anyone who is running latest version of OSX to help getting started quickly.
I am using the pre-built version of the jars for testing and I found this to be helpful for me and hope more people can benefit too.
Post installation steps:
This is necessary as in your system you might have both Python3 and Python 2 installed, and you will noticed the following message when you are having both of them.
The line to note here is that I need to add the
export PATH="/usr/local/opts/opencv@2/bin:$PATH"
to my default shell (e.g. zsh in this case).After this is done, then things are working properly when I use the pre-build version of the jars.
I suspect that if I have to build from source then the following flags may be required
LDFLAGS
,CPPFLAGS
andPKG_CONFIG_PATH
.With this in place I was able to run the example tutorials properly using my non-gpu machine.