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 ```