35 Zeilen
757 B
Batchfile
35 Zeilen
757 B
Batchfile
@echo off
|
|
title Building Claude Project Manager
|
|
echo Building Claude Project Manager executable...
|
|
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
|
|
)
|
|
|
|
:: Install PyInstaller if not already installed
|
|
pip show pyinstaller >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Installing PyInstaller...
|
|
pip install pyinstaller
|
|
echo.
|
|
)
|
|
|
|
:: Install other requirements
|
|
echo Installing requirements...
|
|
pip install -r requirements.txt >nul 2>&1
|
|
|
|
:: Run the build script
|
|
echo.
|
|
echo Building executable...
|
|
python build_exe.py
|
|
|
|
echo.
|
|
echo Build process completed!
|
|
echo Check the 'dist' folder for the executable.
|
|
pause |