This commit is contained in:
Melissa LeBlanc-Williams 2023-09-11 08:27:53 -07:00
commit f9a67937b5
2 changed files with 4 additions and 3 deletions

View file

@ -21,7 +21,8 @@ We are in the process of converting our Shell Scripts to Python. Instructions fo
To install the dependencies for the python scripts, run the following commands:
```bash
sudo apt-get install python3-pip click
sudo apt-get install python3-pip
sudo pip3 install --upgrade click
sudo pip3 install --upgrade setuptools
sudo pip3 install --upgrade adafruit-python-shell
```

View file

@ -235,7 +235,7 @@ raspbian_check() {
elif cat /etc/os-release | grep "bullseye" > /dev/null; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep "buster" > /dev/null; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=false
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep "stretch" > /dev/null; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=false
elif cat /etc/os-release | grep "jessie" > /dev/null; then