update documentation

This commit is contained in:
mvbingham
2025-12-03 20:43:29 -05:00
parent 128f20501d
commit e5aa76603d

View File

@@ -90,20 +90,22 @@ This system implements **intelligent CPU temperature compensation** to ensure ac
### 1⃣ Install System Dependencies ### 1⃣ Install System Dependencies
```bash ```bash
sudo apt-get update sudo apt update && apt upgrade
sudo apt-get install -y python3-pip python3-dev git sudo apt install -y python3-pip python3-dev git i2c-tools
``` ```
### 2⃣ Clone the Repository ### 2⃣ Clone the Repository
```bash ```bash
git clone https://github.com/yourusername/raspi-enviro.git git clone https://github.com/yourusername/binglab-enviro.git
cd raspi-enviro
``` ```
### 3Install Python Dependencies ### 3Create Python virtual environment and install Dependencies
```bash ```bash
python3 -m venv enviro
source enviro/bin/activate
cd binglab-enviro
pip3 install -r requirements.txt pip3 install -r requirements.txt
``` ```