admin管理员组

文章数量:1350017

I am attempting to use cx_freeze 7.2.10 to create exe with the gdal 3.10.2 library. I installed gdal in Windows using pip install and wheel. Pip list indicated that GDAl is installed and from python command line "from osgeo import gdal" does not result in any error so looks like successful installation. Cx_freeze will create the exe but the does not recognize the gdal library and will end up with this traceback: Traceback gdal import error

I have tried correcting this by using the suggestion made in these two links: GDAL Import Error after freezing Python 3 script , Importing GDAL with cx_Freeze, Python3.4. which is essentially changing some of the code in the swig function in the int.py file (C:\Program Files\Python312\Lib\site-packages\osgeo_int_.py) to recognize that gdal is imported from osgeo (_gdal to osego._gdal):

def swig_import_helper(): # Line 37
    import importlib
    from os.path import dirname, basename
    #mname = basename(dirname(__file__)) + '._gdal' # inal code
    mname = basename(dirname(__file__)) + 'osgeo._gdal' # changed code
    try:
        return importlib.import_module(mname)
    except ImportError:
        #return importlib.import_module('_gdal') # Orginal code
        return importlib.import_module('osgeo._gdal') # Changed code

and I also included the changes in the cx_freese setup file as suggested:

from cx_Freeze import setup, Executable

# Dependencies are automatically detected, but it might need
# fine tuning.
build_options = {'packages': ["seaborn","matplotlib","rasterio", "tkinter",  
                "tkinter.font", "fpdf", "scipy","osgeo","osgeo._gdal"], 'excludes': []}

base = 'gui'

executables = [
    Executable('HPS_model.py', base=base, target_name = 'HPS_Model',
               icon="HPS.ico")
]

setup(name='HPS Model',
      version = '1',
      description = 'HPS Model',
      options = {'build_exe': build_options},
      executables = executables)

Has anyone been successful creating exe using cx_freeze and gdal? Thanks.

本文标签: pythonCxfreeze not importing gdalStack Overflow