@echo off
echo Installing dependencies for Blender MCP...
pip install mcp
if %errorlevel% neq 0 (
echo.
echo Error: Gagal install 'mcp'. Pastikan Python sudah terinstall dan ada di PATH.
pause
exit /b
)
echo.
echo Dependencies installed successfully!
echo You can now proceed with the setup instructions.
pause