docs: 重构 README 新手使用说明,添加一键安装脚本文档

This commit is contained in:
2026-06-22 15:42:44 +08:00
parent cba7f9fb55
commit 04ef9b65a5
4 changed files with 529 additions and 70 deletions

24
setup.bat Normal file
View File

@@ -0,0 +1,24 @@
@echo off
chcp 65001 >nul
echo.
echo ========================================
echo pptopic 一键安装程序
echo ========================================
echo.
echo 即将自动安装uv、Python 3.13、pngquant 和 pptopic
echo 安装过程中请勿关闭此窗口...
echo.
powershell -ExecutionPolicy Bypass -File "%~dp0setup.ps1" %*
if %errorlevel% neq 0 (
echo.
echo 安装过程中出现错误,请查看上方提示。
echo.
pause
exit /b %errorlevel%
)
echo.
echo 按任意键关闭此窗口...
pause >nul