run.bat
352 Bytes
@echo off
echo Starting Etsy Customer Notify Tool...
REM 检查Python是否安装
python --version >nul 2>&1
if errorlevel 1 (
echo Python is not installed or not in PATH
pause
exit /b 1
)
REM 安装依赖
echo Installing dependencies...
pip install -r requirements.txt
REM 启动程序
echo Starting application...
python main.py
pause