I have a python script which I would like to package with pyinstaller. It uses osgeo.ogr and osgeo.osr. Using the basic build command (python pyinstaller.py --onefile c:\path\to\my\file.py) it creates the spec file and the exe. When I run the exe, I get the following error:
File "c:\Programming\Python\pyinstaller-2.0\PyInstaller\loader\iu.py", line 409, in importHook
raise ImportError("No module named %s" % fqname)
ImportError: No module named _gdal
_gdal is found in the osgeo package (I can import it using import osgeo._gdal). I have tried creating a hook for it (tried hook-_gdal.py,hook-osgeo._gdal.py,hook-_gdal.osgeo.py), with the single line hiddenimports = ['osgeo._gdal'] (also tried hiddenimports = ['_gdal']). Whenever I add the path to the spec file as hookspath='c:\\Programming\\Python\\pyinstaller-2.0\hooks', I get the following error when I try to build it (regardless of what's in the directory):
File "c:\Programming\Python\pyinstaller-2.0\PyInstaller\hooks\hook-site.py", line 37, in hook
new_code_object = PyInstaller.utils.misc.get_code_object(fake_file)
AttributeError: 'module' object has no attribute 'utils'
Clearly I'm making a number of errors here, but I can't figure out where. Can anyone help?
_gdal– rudivonstaden Oct 2 '12 at 21:11cmdprompt, it worked fine (just make sure to set theGDAL_DATAenvironment variable correctly). – rudivonstaden Oct 3 '12 at 8:08