-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
48 lines (42 loc) · 949 Bytes
/
setup.bat
File metadata and controls
48 lines (42 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@echo off
REM Primordial Garden - Quick Setup Script (Windows)
echo ==================================
echo Primordial Garden - Setup
echo ==================================
echo.
echo Checking Python version...
python --version
echo.
echo Creating virtual environment...
if not exist "venv" (
python -m venv venv
echo Virtual environment created.
) else (
echo Virtual environment already exists.
)
echo.
echo Activating virtual environment...
call venv\Scripts\activate.bat
echo.
echo Installing dependencies...
pip install -r requirements.txt
echo.
echo ==================================
echo Setup complete!
echo ==================================
echo.
echo To run the simulation:
echo venv\Scripts\activate
echo python main.py
echo.
echo Or use the run.bat script:
echo run.bat
echo.
echo Controls:
echo SPACE: Pause/Resume
echo 1-5: Speed control
echo S: Toggle stats
echo R: Reset
echo Q: Quit
echo.
pause