Reputation: 386
I have opencv3 installed on my mac, using Homebrew for the install, with python2.7 bindings. I now want to use some code that only works with python3, that also uses opencv3, but I don't want to break the python2.7 bindings as I have other code that relies on them. How do you install opencv3 on a mac with both python2.7 and python3.x bindings, or how do you add python3.x bindings to an existing install of opencv3 without breaking the python2.7 bindings?
Upvotes: 0
Views: 145
Reputation: 3310
If you want opencv to work with python2.x then then I would suggest you to download opencv2.x
If you are using anaconda and want to install opencv2.x version then run the following command : conda install -c menpo opencv3
Upvotes: 0