I have installed the image-match module in my virtual env. via pip:pip install image_match
I have then done an import into my python 3 script:from image_match.goldberg import ImageSignature
I get an error :ImportError: No module named 'image_match.goldberg'; 'image_match' is not a package
When I do a pip freeze in my virtual env. I can see that in the list of packages listed image-match is present:
image-match==1.1.2
I have installed the image-match module in my virtual env. via pip:pip install image_match I have then done an import into my python 3 script:from image_match.goldberg import ImageSignature I get an error :ImportError: No module named 'image_match.goldberg'; 'image_match' is not a package When I do a pip freeze in my virtual env. I can see that in the list of packages listed image-match is present: image-match==1.1.2
Please guide me on what I am doing wrong.