I’ve created a simple python script. user should enter a path to an image, and the script should find a circle in the image, and calculate the center and the radius for x and y axis. everything is working as it should.
after converting the script to exe file, using Auto Py to Exe application (I used one file and console based), the exe compilation finished without any exceptions.
after the user entering the path, the script keep crashing with the following error:
ModuleNotFoundError: No Module named ‘scipy._lib.array_api_compat.numpy.fft’
how can I fix this issue?
I try different types of converting the script to exe but I keep getting the same error