This is a Streamlit application. Follow the instructions below to set up and run the application in a virtual environment.
-
Clone the repository:
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
-
On Windows:
venv\Scripts\activate
-
On macOS and Linux:
source venv/bin/activate
-
-
Install the requirements:
pip install -r requirements.txt
-
Run the Streamlit application:
streamlit run main.py
After running the above commands, the Streamlit application should be running on your local machine. Open your web browser and go to http://localhost:8501 to view the application.
To deactivate the virtual environment, simply run:
deactivate