You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have been trying to use this important code using python 3.6. I followed the compilation instructions which terminated without errors, but then when I'm trying to run test_jpeg_read_python.py I get the following error:
E ModuleNotFoundError: No module named '_jpegtools'
I did some reading, and found that this probably has to do with incompatibility between python versions used by pyhon-boost and the one I'm using. Unfortunately, I'm unfamiliar with python-boost...
I'd be grateful for any help I can get on this.
Thanks!
The text was updated successfully, but these errors were encountered:
It's the import problem. Replacing import _jpegtools with from . import _jpegtools in file python/jpegtools/__init__.py will fix it. I already merged it into the master branch.
Hi,
I have been trying to use this important code using python 3.6. I followed the compilation instructions which terminated without errors, but then when I'm trying to run test_jpeg_read_python.py I get the following error:
E ModuleNotFoundError: No module named '_jpegtools'
I did some reading, and found that this probably has to do with incompatibility between python versions used by pyhon-boost and the one I'm using. Unfortunately, I'm unfamiliar with python-boost...
I'd be grateful for any help I can get on this.
Thanks!
The text was updated successfully, but these errors were encountered: