Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.16 KB

backlog.md

File metadata and controls

35 lines (27 loc) · 1.16 KB

Current tasks

  • Figure out what chart type to use. Scatter is a bit basic. See pydeck Layers.

Reminders

Initial setup

Assuming virtualenv is already installed globally, and repository has been cloned. Ensure current active directory is the root folder of the repository.

virtualenv sunshine-env
source sunshine-env/bin/activate
pip install ipykernel
ipython kernel install --user --name=sunshine-kernel

May need to restart VSCode (if using VSCode instead of broswer to run notebooks)

pip install -r requirements.txt

How to run app locally

Activate virtual environment with
source sunshine-env/bin/activate
Then run app with
streamlit run main-app.py

Saving/installing current pip dependencies

pip freeze requirements.txt
pip install -r requirements.txt

Useful links