pyinstaller打包後執行提示找不到模組

2021-10-05 15:14:59 字數 433 閱讀 9241

各位使用pyinstaller進行python到exe打包時,如果引入了第三方包,執行時會報錯,如下所示:

這時候需要在打包時指定-p引數,後面跟上python目錄下的第三方庫模板目錄路徑,再打包就成功了。

例如:需要匯入的包名為:

from common_tools import db_connect

物理路徑為:i:\myworkspace\python_src\common_tools

那麼在打包的時提交匯入包的絕對路徑即可

pyinstaller get_file_export.py -f -p i:\myworkspace\python_src

pyinstaller打包exe後無法執行錯誤解決

1 執行環境說明 python版本3.7 直接使用pip進行安裝pywin32 pyinstaller pip install pywin32 pip install pyinstaller 2 使用了第三方庫的情況 建議在打包之前務必找到第三方庫的包,把包複製到到跟myfile.py同目錄下,然後...

踩坑之路 解決pyinstaller打包後無法執行

問題描述 pyinstaller打包後在沒有安裝python環境的電腦上閃退無法執行,但是在裝有python環境的電腦上可以執行。程式並沒有import pandas包,已經注釋掉import pandas,但是打包後發現報錯 attributeerror module pandas has no ...

pyinstaller打包程式

python打包成exe檔案時,用的是pyinstaller 第一步安裝pyinstaller pip install pyinstaller第二步 pyinstaller f w i ico py其中 ico 是logo,py是你要打包的py檔案 我在打包時出現了struct.error unpa...