-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathinstall.bat
More file actions
16 lines (13 loc) · 600 Bytes
/
install.bat
File metadata and controls
16 lines (13 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off
REM FunGen installer (Windows). Bootstraps uv, then runs the latest install.py
REM directly from GitHub. install.py handles cloning the repo + building .venv.
setlocal
cd /d "%~dp0"
where uv >nul 2>nul
if %errorlevel% neq 0 (
echo Installing uv ^(one-time, ~15 MB^)...
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://astral.sh/uv/install.ps1 | iex"
)
set "PATH=%USERPROFILE%\.local\bin;%USERPROFILE%\.cargo\bin;%PATH%"
uv run --no-project --python 3.11 https://raw.githubusercontent.com/ack00gar/FunGen-AI-Powered-Funscript-Generator/main/install.py %*
pause