Pyinstaller 打包flask_socketio为exe程序后出现:ValueError: Invalid async_mode specified

Pyinstaller 打包flask_socketio为exe程序后出现:ValueError: Invalid async_mode specified

一、详细描述问题描述

|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Traceback (most recent call last): File "app_3.py", line 22, in <module> File "flask_socketio\init.py", line 186, in init File "flask_socketio\init.py", line 242, in init_app File "socketio\base_server.py", line 34, in init File "engineio\base_server.py", line 94, in init ValueError: Invalid async_mode specified |

二、解决方法

1.确认flask_socketio的版本,如 flask_socketio version>5.x 。则不需要async_mode=''参数。使用 pip show flask_socketio 命令查看版本,版本信息如下。

|-------------------------------------|
| Name: Flask-SocketIO Version: 5.5.1 |

可运行的最小基础代码如下,可在该代码验证环境是否正常,index.html为首页可在template文件夹中自行创建。注意allow_unsafe_werkzeug=True,这个配置必须添加。否则会出现错误。

|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| app = Flask(name) app.secret_key = 'your_secret_key' # socketio = SocketIO(app, async_mode='eventlet') # 5.x版本已废弃该命令 socketio = SocketIO(app) @app.route('/') def welcome(): return render_template('index.html') if name == 'main': socketio.run(app, host='0.0.0.0', port=5000, debug=True, allow_unsafe_werkzeug=True) |

index.html文件如下:

|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Welcome</title> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> </head> <body> <h1>Welcome to My Flask App!</h1> <p>This is a simple welcome page.</p> </body> </html> |

  1. 使用pyinstaller命令打包,这一步打包后会生成一个配置参数文件app.spec。注意确保

确保根目录下有templates, static两个文件夹。

|------------------------------------------------------------------------------------------------------|
| pyinstaller --onefile --noconsole --add-data="templates;templates" --add-data="static;static" app.py |

  1. 打包完成后,找到app.spec配置文件。完成如下操作:

(1)在相关的行,强制添加如下库的依赖。信息如下。

|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| a = Analysis( ['app.py'], pathex=[], binaries=[], hiddenimports=["gevent","geventwebsocket","gevent.ssl","gevent.builtins","engineio.async_drivers.threading"], datas=[('templates', 'templates'), ('static', 'static')], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], noarchive=False, optimize=0, ) |

(2)修改配置,开启后台运行窗口模型

|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| exe = EXE( pyz, a.scripts, a.binaries, a.datas, [], name='app', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, console=True, # False -> True disable_windowed_traceback=False, argv_emulation=False, target_arch=None, codesign_identity=None, entitlements_file=None, ) |

(3)删除原来的dist、bulid文件文件,使用 pyinstaller app.spec命令重新打包。

|----------------------|
| pyinstaller app.spec |

  1. 打包完成后,找到app.exe文件,点击后。exe程序将以黑窗口模式后台运行。
相关推荐
sheji3416几秒前
【开题答辩全过程】以 基于python的图书销售数据可视化系统为例,包含答辩的问题和答案
开发语言·python·信息可视化
_Soy_Milk1 分钟前
【算法工程师】—— Python 高级
开发语言·python·算法
程序猿Code2 分钟前
groovy闭包
开发语言·python
2401_861412142 分钟前
python 从入门到精通 高清PDF 背记手册
开发语言·python·pdf
幻云201010 分钟前
Python机器学习:筑基与实践
前端·人工智能·python
喵手11 分钟前
Python爬虫零基础入门【第二章:网页基础·第2节】你要抓的到底是什么:HTML、CSS 选择器、XPath 入门?
爬虫·python·python爬虫实战·python爬虫工程化实战·python爬虫零基础入门·网页基础·网页结构解析
飞天小蜈蚣12 分钟前
python-django_ORM的十三个查询API接口
开发语言·python·django
人工智能AI技术19 分钟前
【Agent从入门到实践】18 脚本化编程:批量执行、自动化逻辑
人工智能·python
摘星编程21 分钟前
React Native + OpenHarmony:MapView自定义标注样式
python
向量引擎25 分钟前
[硬核架构] 2026 企业级 AI 网关落地指南:从“连接超时”到“秒级响应”的架构演进(附 Python/Java 源码)
人工智能·python·gpt·ai作画·架构·aigc·api调用