J'essaie de faire fonctionner opencv avec Python3.5 sur Ubuntu 16.04.
J'ai suivi les étapes de la réponse à cette question : Comment installer OpenCV 3.1 pour Python 3.5 sur Ubuntu 16.04 LTS ?
et aussi le lien qui s'y trouve. J'ai dû installer d'autres dépendances également.
Mon premier problème est que cmake continue de trouver Python3.4 et non Python3.5.
-- Python 2:
-- Interpreter: /usr/bin/python2.7 (ver 2.7.11)
-- Libraries: /usr/lib/x86_64-linux-gnu/libpython2.7.so (ver 2.7.11+)
-- numpy: /usr/local/lib/python2.7/dist-packages/numpy/core/include (ver 1.11.1)
-- packages path: lib/python2.7/dist-packages
--
-- Python 3:
-- Interpreter: /usr/bin/python3.4 (ver 3.4)
--
Il y a quelques autres dépendances manquantes aussi mentionnées. Je ne sais pas si elles sont essentielles, par exemple Matlab :
-- Matlab: Matlab not found or implicitly disabled
également gtk+-3.0 alors que je pensais l'avoir installé :
-- Checking for module 'gtk+-3.0'
-- No package 'gtk+-3.0' found
et quelques autres :
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- Looking for linux/videodev.h
-- Looking for linux/videodev.h - not found
-- Looking for linux/videodev2.h
-- Looking for linux/videodev2.h - found
-- Looking for sys/videoio.h
-- Looking for sys/videoio.h - not found
-- Checking for module 'libavresample'
-- No package 'libavresample' found
J'ai fait une commande grep / sed pour modifier python3.4 en 3.5 et j'ai essayé make et make install mais ce n'est toujours pas là.