Skip to content
  • This project
    • Loading...
  • Sign in

柴进 / EtsyCustomerNotify

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • EtsyCustomerNotify
  • run.bat
  • 柴进's avatar
    客户唤醒营销工具初版 · 9d72c970
    9d72c970
    柴进 committed 2025-10-13 09:54:46 +0800
run.bat 352 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
@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