Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

there's a couple of interesting parts in the cmake output:

-- Found PythonInterp: /opt/local/bin/python2.7 (found suitable version "2.7.11", minimum required is "2.7")
-- Could NOT find PythonLibs: Found unsuitable version "2.7.10", but required is exact version "2.7.11" (found /usr/lib/libpython2.7.dylib)
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ImportError: No module named numpy.distutils
-- Could NOT find PythonInterp: Found unsuitable version "2.7.10", but required is at least "3.4" (found /usr/bin/python)
-- Could NOT find PythonInterp: Found unsuitable version "2.7.10", but required is at least "3.2" (found /usr/bin/python)


--     Unavailable:                 cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev java python2 python3 viz cvv hdf matlab sfm

in other words, it found python2.7, but no python lib to link to, and no headers, and it did not build a new cv2.pyd at all (so, you don't see any new modules, because you're still running a previous cv2.pyd)

in other words, - try installing python dev packages(no idea for your os), and update numpy to a more recent version, rinse and repeat.