export_requirements.bat 327 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 @echo off REM 导出 Windows 环境的精确依赖版本 echo 正在导出依赖版本... pip freeze | findstr /C:"google-genai" /C:"Pillow" /C:"PyQt5" /C:"pyinstaller" > requirements-lock.txt echo. echo 已导出到 requirements-lock.txt echo 请将此文件复制到 Mac 上使用 echo. type requirements-lock.txt pause