Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 660 Bytes

File metadata and controls

26 lines (17 loc) · 660 Bytes

Deep Solar

CLICK HERE!!! to view the presentation slides.

Setup ⚙️

We will use conda to create a virtual environment and manage dependencies for this project. We will use python 3.9.

To create the virutal environment:

conda create -n nasa python=3.9 -y

To activate the virtual environment and install dependencies:

conda activate nasa
pip install -r requirements.txt

To run the web application locally:

streamlit run Main.py