I have Python code that correctly processes its simple thing using opencv. eg
import cv2 x = cv2.imread('Dog6.jpg') cv2.imwrite('new2.jpg')
setup.py -
from distutils.core import setup import py2exe import cv2 setup(console=['name.py'])
but i cannot create exe of this code with py2exe. Is there another way to create exe such a program?
ImportError error: numpy.core.multiarray failed to import
source share