When I try to import cv2 in IPython , I am getting this error-
ImportError: dynamic module does not define module export function (PyInit_cv2)
I have opencv 3.0, ubuntu 14.04, python 3.4.
I searched online but couldn't get any answer.
When I try to import cv2 in IPython , I am getting this error-
ImportError: dynamic module does not define module export function (PyInit_cv2)
I have opencv 3.0, ubuntu 14.04, python 3.4.
I searched online but couldn't get any answer.
Python3 libraries usually can be found in: /usr/lib/python3/dist-packages
I found out that the library cv2.cpython-34m.so is needed for Python3.4. But this file wasn't be contained in my default library directory.
In my environment, this library was stored in /usr/local/lib/python3.4/dist-packages/
So I created a symbolic link. Try it with:
I hope, this helps you
In my case, I was using opencv library for python2 in python3.
Check your PYTHONPATH by typing
echo $PYTHONPATH
and see there is correct path for python3.
I define PYTHONPATH at the end of
~/.bashrc
file. Modify it if you are loading python2's library.After
source ~/.bashrc
or restart terminal, check PYTHONPATH againIt solves my problem.