From e5aa76603d5c2dbf44cf72a5fa1d5bcb6583b9ec Mon Sep 17 00:00:00 2001 From: mvbingham Date: Wed, 3 Dec 2025 20:43:29 -0500 Subject: [PATCH] update documentation --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d55a418..6237311 100644 --- a/README.md +++ b/README.md @@ -90,20 +90,22 @@ This system implements **intelligent CPU temperature compensation** to ensure ac ### 1️⃣ Install System Dependencies ```bash -sudo apt-get update -sudo apt-get install -y python3-pip python3-dev git +sudo apt update && apt upgrade +sudo apt install -y python3-pip python3-dev git i2c-tools ``` ### 2️⃣ Clone the Repository ```bash -git clone https://github.com/yourusername/raspi-enviro.git -cd raspi-enviro +git clone https://github.com/yourusername/binglab-enviro.git ``` -### 3️⃣ Install Python Dependencies +### 3️⃣ Create Python virtual environment and install Dependencies ```bash +python3 -m venv enviro +source enviro/bin/activate +cd binglab-enviro pip3 install -r requirements.txt ```