32 Zeilen
656 B
Batchfile
32 Zeilen
656 B
Batchfile
@echo off
|
|
title Claude Project Manager
|
|
echo Starting Claude Project Manager...
|
|
echo.
|
|
|
|
:: Check if Python is installed
|
|
python --version >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo ERROR: Python is not installed or not in PATH
|
|
echo Please install Python 3.8 or higher
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
:: Check if requirements are installed
|
|
python -c "import customtkinter" >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Installing required packages...
|
|
pip install -r requirements.txt
|
|
echo.
|
|
)
|
|
|
|
:: Start the application
|
|
echo Launching application...
|
|
python main.py
|
|
|
|
:: If app crashes, keep window open
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Application crashed!
|
|
pause
|
|
) |