Files
ai-shiliu/legacy/install_wechat_bot.bat
figmar 81115dc23d 初始提交:识流 AI 助手项目
微信自动回复机器人,基于截图+OCR识别消息,支持关键词规则和 AI(OpenAI/DeepSeek/Dify)自动回复。
技术栈:PySide6 + Flask + Vue3 + RapidOCR + SQLite

注:OCR大模型文件(.onnx / .pdiparams)不纳入版本控制,需单独下载。

🤖 Generated with [Qoder][https://qoder.com]
2026-05-30 15:09:40 +08:00

38 lines
1.0 KiB
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
chcp 65001
echo ========================================
echo 安装微信自动回复依赖
echo ========================================
echo.
echo [1/3] 安装UI自动化库推荐...
pip install uiautomation pyperclip requests -i https://pypi.tuna.tsinghua.edu.cn/simple
echo.
echo [2/3] 安装OCR版本依赖备用...
pip install opencv-python numpy pillow pyautogui -i https://pypi.tuna.tsinghua.edu.cn/simple
echo.
echo [3/3] 安装PaddleOCR可选...
pip install paddleocr -i https://pypi.tuna.tsinghua.edu.cn/simple
echo.
echo ========================================
echo 安装完成!
echo ========================================
echo.
echo 使用方法:
echo.
echo 方案1UI自动化版推荐
echo - 无需OCR直接读取微信UI
echo - 不受窗口位置影响
echo - 识别准确率100%%
echo 运行: python wechat_ui_bot.py
echo.
echo 方案2OCR识别版备用
echo - 使用图像识别
echo - 需要固定窗口位置
echo 运行: python wechat_auto.py
echo.
pause