- in your terminal run
conda create -n 'dash-env' python=3.6
- or just copy your
learn-env
to adash-env
using:- conda create --clone learn-env --name dash-env
- after that, verify your installation with
conda env list
- install all of your dependencies for this environment
Your project folder should have this structure
project-folder/
|-app.py
|__init__.py
|-components/
|-files.py
|-__init__.py
|-data/
|-datafiles
|images/
|-imagefiles
- Step 3 - Populate your app.py file