This guide provides steps to set up and run the project on a Raspberry Pi 5.
- Raspberry Pi 5
- Python 3 installed
pipinstalled
-
Create a virtual environment
Run the following command to create a virtual environment using Python's built-invenvmodule:python3 -m venv venv
-
Activate the virtual environment
source venv/bin/activate -
Install dependencies
Install required packages fromrequirements.txt:pip install -r requirements.txt
-
Run the project
Execute the main script:python main.py
To exit the virtual environment, run:
deactivate