Greetings, I recognized the fellows. Running 32-bit Python2.7 on Windows 7.
I have a question regarding the inclusion of GDAL executables in the pyinstaller assembly. I am making a system call to run two GDAL functions from the FWTools release. These functions are located in the PATH variable in the windows C:\Program Files (x86)\FWTools2.4.7\bin , and therefore it works fine in the Python27 environment. However, this path does not migrate to the pyinstaller assembly.
This code calls the GDAL function to re-translate the image to different geospatial coordinates.
os.system("gdal_translate -of GTiff -a_ullr 694440.7939 6403967.2406 696438.7261 6404791.6774 -a_srs EPSG:28355 site.tif siteGR.tif") os.system("gdalinfo siteGR.tif")
Runtime works well until it falls into the above lines, and then returns the following error:
'gdal_translate' is not recognized as an internal or external command, operable program or batch file. 'gdalinfo' is not recognized as an internal or external command, operable program or batch file.
I tried to include both gdal_translate.exe and gdalinfo.exe in the build folder as binaries, just as you would with .dll, but since it does not work after the script started working, I think this applies to them.
I have included the specification file below. I could use some tips on how to get the pyinstaller assembly to recognize executable files running from the system in a python script.
Spec:
# -*- mode: python -*- a = Analysis(['gis_helper.py'], pathex=['C:\\Users\\Hp\\PycharmProjects\\GISdev'], hiddenimports=['scipy.linalg.cython_blas', 'scipy.linalg.cython_lapack', 'scipy.special._ufuncs_cxx', 'ctypes.util', 'pandas.util', 'distutils.util', 'shapely', '_socket', '_proj', 'multiprocessing', '_multiprocessing', 'multiprocessing.process', 'multiprocessing.util'], hookspath=['C:\\Python27\\Lib\\site-packages\\PyInstaller\\hooks'], runtime_hooks=None) a.binaries1=['geos_c.dll', 'geos_c.dll', 'BINARY'], a.binaries2=['python27.dll', 'python27.dll', 'BINARY'], a.binaries3=['_socket.pyd', '_socket.pyd', 'BINARY'], a.binaries4=['win32api.pyd', 'win32api.pyd', 'BINARY'], a.binaries5=['pywintypes27.dll', 'pywintypes27.dll', 'BINARY'], a.binaries6=['pythoncom27.dll', 'pythoncom27.dll', 'BINARY'], a.binaries7=['_imaging.pyd', '_imaging.pyd', 'BINARY'], a.binaries8=['_fblas.pyd', '_fblas.pyd', 'BINARY'], a.binaries9=['gdal_translate.exe', 'gdal_translate.exe', 'BINARY'], a.binaries10=['gdalinfo.exe', 'gdalinfo.exe', 'BINARY'], import mpl_toolkits.basemap import os src_basedata = os.path.join(mpl_toolkits.basemap.__path__[0], "data") tgt_basedata = os.path.join('mpl_toolkits', 'basemap', 'data') pyz = PYZ(a.pure) exe = EXE(pyz, a.scripts, [('v',None,'OPTION')], a.binaries,