readmy again
This commit is contained in:
parent
52ec3986a6
commit
02ff9f8a9b
1 changed files with 16 additions and 2 deletions
18
README.md
18
README.md
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue