readmy again

This commit is contained in:
Technoduck 2024-12-11 19:33:31 -05:00
parent 52ec3986a6
commit 02ff9f8a9b

View file

@ -1,4 +1,12 @@
# map # Sunset Simulator
## Organization
The code is separated into two parts:
- GUI file: [app.py](app.py)
- "header" file: [skydome.py](skydome.py)
to use the gui first to use the gui first
- set up the environment - set up the environment
@ -6,13 +14,19 @@ to use the gui first
## environment setup ## environment setup
### Windows
``` ```
> python3 -m venv .venv > python3 -m venv .venv
> venv\Scripts\activate > venv\Scripts\activate
> pip install -r requirements.txt > pip install -r requirements.txt
``` ```
### Linux/Mac
```
> python3 -m venv .venv
> source .venv/bin/activate
> pip install -r requirements.txt
```
## running the gui ## running the gui