Compare commits
2 Commits
650df5fa55
...
9773de31cb
Author | SHA1 | Date |
---|---|---|
Marc Gauch | 9773de31cb | |
Marc Gauch | aa04d5b282 |
50
README.md
50
README.md
|
@ -0,0 +1,50 @@
|
|||
# Setup
|
||||
|
||||
_Works on my machine..._
|
||||
|
||||
**uname -a**
|
||||
|
||||
> Linux marc-hp 5.15.0-70-generic #77-Ubuntu SMP Tue Mar 21 14:02:37 UTC 2023 x86*64 x86_64 x86_64 GNU/Linux*
|
||||
|
||||
**python3 --version**
|
||||
|
||||
> Python 3.10.6
|
||||
|
||||
**pip --version**
|
||||
|
||||
> pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)
|
||||
|
||||
## Environment
|
||||
|
||||
### Activate
|
||||
|
||||
1. `cd dashboardX`
|
||||
1. `python3 -m venv env`
|
||||
1. `source env/bin/activate`
|
||||
1. `pip install -r requirements.txt`
|
||||
|
||||
### Deactivate
|
||||
|
||||
```bash
|
||||
deactivate
|
||||
```
|
||||
|
||||
## Run
|
||||
|
||||
```bash
|
||||
python3 main.py
|
||||
```
|
||||
|
||||
## Packages
|
||||
|
||||
### Add new Package
|
||||
|
||||
```bash
|
||||
pip install <package-name>
|
||||
```
|
||||
|
||||
### Update requirements.txt
|
||||
|
||||
```bash
|
||||
pip freeze > requirements.txt
|
||||
```
|
|
@ -0,0 +1,21 @@
|
|||
blinker==1.6.2
|
||||
click==8.1.3
|
||||
dash==2.9.3
|
||||
dash-bootstrap-components==1.4.1
|
||||
dash-core-components==2.0.0
|
||||
dash-html-components==2.0.0
|
||||
dash-table==5.0.0
|
||||
Flask==2.3.2
|
||||
itsdangerous==2.1.2
|
||||
Jinja2==3.1.2
|
||||
MarkupSafe==2.1.2
|
||||
numpy==1.24.3
|
||||
packaging==23.1
|
||||
pandas==2.0.1
|
||||
plotly==5.14.1
|
||||
python-dateutil==2.8.2
|
||||
pytz==2023.3
|
||||
six==1.16.0
|
||||
tenacity==8.2.2
|
||||
tzdata==2023.3
|
||||
Werkzeug==2.3.4
|
Loading…
Reference in New Issue