0

I developed some scripts using python3 for GIS related activities using python osgeo, ogr,gdal, module. I converted my script.py to exe using pyinstaller. The converted exe is working on my system well but i f run the same exe othe systems its giving error like nomodule named gdal. I ran the exe with all dll files which developed while in process of py to exe conversion. Please help me?enter image description here

Satya Chandra
  • 728
  • 2
  • 12
  • 26

1 Answers1

0

It seems that you did not include all of your dependencies after all (e.g. _gdal module is missing as the error says). The solution is to include all dependent DLL modules (including transitive dependencies - which I suspect you missed here).

sophros
  • 14,672
  • 11
  • 46
  • 75