Merge branch 'main' of https://github.com/adafruit/Raspberry-Pi-Installer-Scripts
This commit is contained in:
commit
f9a67937b5
2 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||
```
|
||||
|
|
@ -33,4 +34,4 @@ sudo python3 scriptname.py
|
|||
|
||||
## Old Shell Scripts
|
||||
|
||||
If you were directed here from an external site and the script you were looking for appears to be missing, you can either use the newer python script or check the [converted_shell_scripts](https://github.com/adafruit/Raspberry-Pi-Installer-Scripts/tree/main/converted_shell_scripts) folder to use the old shell scripts.
|
||||
If you were directed here from an external site and the script you were looking for appears to be missing, you can either use the newer python script or check the [converted_shell_scripts](https://github.com/adafruit/Raspberry-Pi-Installer-Scripts/tree/main/converted_shell_scripts) folder to use the old shell scripts.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue