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
```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
```
### 3Install Python Dependencies
### 3Create Python virtual environment and install Dependencies
```bash
python3 -m venv enviro
source enviro/bin/activate
cd binglab-enviro
pip3 install -r requirements.txt
```