This guide will walk you through the steps to set up and run FinGuru Streamlit App on your local machine.
Before you begin, ensure you have the following installed:
Open Anaconda Prompt and create a new virtual environment by running the following command:
conda create --name UMHack python=3.12.2
Activate the virtual environment:
conda activate UMHack
Create a folder where you want to store your project files. Then, navigate to the folder using the Anaconda Prompt and clone your Git repository by running the following command:
git clone https://github.com/DangYanRou/PHMIR_umHack.git
Navigate into the cloned repository directory:
cd <repository_folder>
Install the required dependencies listed in the requirements.txt
file:
pip install -r requirements.txt
After installing the dependencies, you can now run FinGuru Streamlit App. Make sure you are still in the repository directory and in the same virtual environment.
Run the following command:
streamlit run Home.py
This command will start the Streamlit server and open your default web browser with the Streamlit application running. You can now interact with the application.
You have successfully set up and run a Streamlit Python program on your local machine. Happy Streamlit-ing!