0

I've managed to install opencv using these instructions. However, unlike posts like this and this I don't get any python bindings. Nothing python related.

$ cd /opt/boxen/homebrew/Cellar/opencv/2.4.9
$ find . | grep py

Nothing! :( I don't mind doing some hacks on the PYTHONPATH and whatnot but there are no files my python can try to import.

Community
  • 1
  • 1
Peter Bengtsson
  • 7,235
  • 8
  • 44
  • 53

1 Answers1

0

Mayber you could just do this? Replacing . to *?

find * | grep py

Else, you can search by yourself to opencv/2.4.9/build/python/* ?

Are you sure you didn't downloaded the source only?

Alexis Paques
  • 1,885
  • 15
  • 29