I'm trying to create a .exe file from a python code; in a part of my code, I use shapely to create a polygon and check if points are in or out of this polygon. When I create a .exe from my python code without this part of the code, everything works fine, but when I add
from shapely import geometry
and try to create a .exe file, I get this error,
Error: geos_c.dll not found, required by hook-shapely.py.
Please check your installation or provide a pull request
to PyInstaller to update hook-shapely.py.
Any help would be appreciated.