Python笔记-解决pyinstaller打包后运行时动态加载模块报错(No module named)
Posted IT1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python笔记-解决pyinstaller打包后运行时动态加载模块报错(No module named)相关的知识,希望对你有一定的参考价值。
出现的问题就是:No module named
原因是我代码里面使用了这个
importlib.import_module
pyinstaller没有检测到。
百度上没有找到解决办法,在外wang找到了
这里要在打包时指定下,如下命令:
pyinstaller --hidden-import common.models.fundOpenPriceYear2025 --hidden-import common.models.fundOpenPriceYear2024 --hidden-import common.models.fundOpenPriceYear2023 --hidden-import common.models.fundOpenPriceYear2022 --hidden-import common.models.fundOpenPriceYear2021 --hidden-import common.models.fundOpenPriceYear2020 --hidden-import common.models.fundOpenPriceYear2019 --hidden-import common.models.fundOpenPriceYear2018 --hidden-import common.models.fundOpenPriceYear2017 --hidden-import common.models.fundOpenPriceYear2016 --hidden-import common.models.fundOpenPriceYear2015 --hidden-import common.models.fundOpenPriceYear2014 --hidden-import common.models.fundOpenPriceYear2013 manager.py
以上是关于Python笔记-解决pyinstaller打包后运行时动态加载模块报错(No module named)的主要内容,如果未能解决你的问题,请参考以下文章
《Python开发 - Python开发笔记》Python打包(PyInstaller)
《Python开发 - Python开发笔记》Python打包(PyInstaller)
pyinstaller打包paramiko后,运行出错“Multibackend cannot be initialized with no backends”解决
Python笔记-windows平台中Flask打包成exe