Skip to content

Commit 6ab3853

Browse files
committed
Update README for dependency installation and clarify simulation step output
1 parent 9b98864 commit 6ab3853

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,12 @@ https://youtu.be/iSNsgj1OCLA?si=Bgq4OAlChz_tSI_g
3737
## ⚙️ Usage
3838
1. Download the [latest release](https://github.com/TechRedByte/Prisoners-Riddle/releases/latest)
3939
2. Unzip the downloaded .zip file
40-
3. Customize the simulation settings and the strategy in config.py
41-
4. Run the main Python file:
40+
3. Install the required dependencies:
41+
```bash
42+
pip install -r requirements.txt
43+
```
44+
4. Customize the simulation settings and the strategy in config.py
45+
5. Run the main Python file:
4246
```bash
4347
python main.py
4448
```

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def printBody(self, lines, collums, task):
152152
progressLines = max(0, secondBodyLines)
153153
remainingTime = (task["elapsed_time"] / task["current"]) * (task["total"] - task["current"])
154154
print(f"Start Time: {utils.formatTimestamp(task['start_time'])}")
155-
print(f"Current Simulation: {task['current']} / {task['total']}")
155+
print(f"Current Simulation Step: {task['current']} / {task['total']}")
156156
print(f"Elapsed Time: {utils.formatTimeSeconds(task['elapsed_time'])}")
157157
print(f"Remaining Time: {utils.formatTimeSeconds(remainingTime)}")
158158

0 commit comments

Comments
 (0)