【Python】pyinstaller 生成可执行程序
2021/9/7 17:06:15
本文主要是介绍【Python】pyinstaller 生成可执行程序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
pyinstaller 使用
- 安装模块
# 安装 > pip install pyinstaller # 升级模块版本 > pip install --upgrade pyinstaller
# 安装成功时打印 Successfully installed pyinstaller-4.5.1
- 语法
# -F 产生单个的可执行文件 # cmd 命令行路径为文件目录:Z:\package\files, 生成文件存放在Z:\package\files Z:\package\files> pyinstaller -F protion.py # -D 产生一个目录(包含多个文件)作为可执行程序 # cmd命令行路径非文件目录,生成文件存放在路径 Z:\ 下 Z:\> pyinstaller -D Z:\xxx\xxx\protion.py
- 遇到的问题:
- 找不到依赖包
> pyinstaller -F protion.py PyInstaller cannot check for assembly dependencies. Please install pywin32-ctypes. pip install pywin32-ctypes
- 根据提示安装pywin32-ctypes
> pip install pywin32-ctypes Looking in indexes: http://pypi.douban.com/simple Requirement already satisfied: pywin32-ctypes in c:\users\thinkpad\appdata\local\programs\python\python38-32\lib\site-packages (0.2.0)
- 解决方法一:未解决 待补充
# python安装模块路径进入Lib/site-packages/Pyinstaller中找到compat.py文件 示例:C:\Users\ThinkPad\AppData\Local\Programs\Python\Python38-32\Lib\site-packages\PyInstaller compat.py # 打开文件搜索 win32ctypes if is_win: try: from win32ctypes.pywin32 import pywintypes # noqa: F401 from win32ctypes.pywin32 import win32api except ImportError: # This environment variable is set by setup.py # - It's not an error for pywin32 to not be installed at that point if not os.environ.get('PYINSTALLER_NO_PYWIN32_FAILURE'): raise SystemExit('PyInstaller cannot check for assembly dependencies.\n' 'Please install pywin32-ctypes.\n\n' 'pip install pywin32-ctypes\n') 将原有的: from win32ctypes.pywin32 import pywintypes # noqa: F401 from win32ctypes.pywin32 import win32api 修改为: #from win32ctypes.pywin32 import pywintypes # noqa: F401 #from win32ctypes.pywin32 import win32api import pywintypes import win32api
- 解决方法二:
# 查看已安装需要升级的模块 > pip list -o # 如果存在新版本 便升级模块 > pip install --upgrade pyinstaller > pip install --upgrade pyinstaller-hooks-contrib > pip install --upgrade pygame # 升级陈宫运行 打包扔报错的话 按照方法一再重新配置一下
- 找不到依赖包
这篇关于【Python】pyinstaller 生成可执行程序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程