test
This commit is contained in:
20
environment/README.md
Normal file
20
environment/README.md
Normal file
@ -0,0 +1,20 @@
|
||||
# Environment Setup
|
||||
|
||||
## Installation with Anaconda/Miniconda
|
||||
|
||||
Run the two commands from the root directory.
|
||||
|
||||
```shell
|
||||
conda env create -f ./environment/conda.yaml
|
||||
conda activate dash-app-tutorial
|
||||
```
|
||||
|
||||
## Installation with Pip
|
||||
|
||||
**Note:** Python >= 3.9 is required to use the [modern style](https://peps.python.org/pep-0585/) of type annotations.
|
||||
|
||||
Run the command from the root directory.
|
||||
|
||||
```shell
|
||||
python -m pip install -r ./environment/requirements.txt
|
||||
```
|
6
environment/conda.yaml
Normal file
6
environment/conda.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
name: dash-app-tutorial
|
||||
dependencies:
|
||||
- python>=3.9
|
||||
- pip
|
||||
- pip:
|
||||
- -r requirements.txt
|
2
environment/requirements-dev.txt
Normal file
2
environment/requirements-dev.txt
Normal file
@ -0,0 +1,2 @@
|
||||
black
|
||||
pylint
|
7
environment/requirements.txt
Normal file
7
environment/requirements.txt
Normal file
@ -0,0 +1,7 @@
|
||||
Babel
|
||||
dash
|
||||
dash-bootstrap-components
|
||||
pandas
|
||||
pandas-stubs
|
||||
plotly
|
||||
python-i18n[YAML]
|
Reference in New Issue
Block a user