If you do not have this environment then create it. To run just follow the instructions based on docker as described below.
docker build -t wegodash .
docker run --memory='4g' --rm -p 8080:8080 wegodash
Note we give 4 gigabyte to this. Make sure your docker dashboard has enough resources enabled.
Go to your browser and open http://127.0.0.1:8080. It should look like below.
Check your environments.
conda env list
Remove as needed.
conda --yes remove --name transit_dashboard --all
Create and activate the new environment.
conda create --name transit_dashboard python=3.8
conda activate transit_dashboard
Add the packages into the new environment. It is tempting to use pip. It may be that some packages are not available in the main conda repositories for your platform. In that case you may need to add additional channels.
# conda config --prepend channels conda-forge
conda config --set channel_priority false
conda install --yes --file requirements.txt
use ipynb-py-convert
conda --yes install ipynb-py-convert
conda activate transit_dashboard
cd app
python transitapp.py