Follow these steps to set up and run the project on your local machine.
git clone <your-repository-url>
cd <your-repository-folder>You can create a virtual environment using Python's built-in venv module.
python3 -m venv .venv # Creates a virtual environment in a folder named .venvpython -m venv .venvRun the following command based on your operating system:
source .venv/bin/activate.venv\Scripts\activate.venv\Scripts\Activate.ps1If you are using Conda and need to deactivate it before proceeding, run:
conda deactivateWith the virtual environment activated, install the required dependencies:
pip install -r requirements.txtTo start the Streamlit app, run:
streamlit run app.py-
Go to Streamlit Community Cloud.
-
Sign in with GitHub.
-
Click "New App" → Select your repository.
-
Set: Branch: main App file: app.py
-
Click Deploy.