From 4238fba6cbb8349c1e08c2bec812026ab7c19148 Mon Sep 17 00:00:00 2001 From: Jahangir <144284208+jahangir842@users.noreply.github.com> Date: Tue, 30 Dec 2025 14:31:00 +0500 Subject: [PATCH] Update installation instructions in README The setup will be run inside a virtual environment --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6bb71eea..7b01794c 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,23 @@ The official documentation of the SPACE simulator is available at [http://space- cd space-simulator ``` -2. Install the required dependencies: + + +2. Create a virtual environment: + ```sh + python -m venv .venv + ``` + +3. Activate virtual environment: + ```sh + source .venv/bin/activate + ``` +4. Install the required dependencies: ```sh pip install -r requirements.txt ``` -3. Run the simulator: +5. Run the simulator: ```sh python main.py ```