fix click install

currently:

```
sudo apt-get install python3-pip click
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package click
```
This commit is contained in:
Mikael Finstad 2023-08-16 13:54:58 +02:00 committed by GitHub
parent 2e3f8e6dc3
commit 63377adde5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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: To install the dependencies for the python scripts, run the following commands:
```bash ```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 setuptools
sudo pip3 install --upgrade adafruit-python-shell sudo pip3 install --upgrade adafruit-python-shell
``` ```
@ -33,4 +34,4 @@ sudo python3 scriptname.py
## Old Shell Scripts ## 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.