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
版权声明:本文标题:python - Cx_freeze not importing gdal - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872956a2553808.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论