From 63377adde5a1116b895be2b2cd50d11c0e9fb626 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Wed, 16 Aug 2023 13:54:58 +0200 Subject: [PATCH] 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 ``` --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 220a979..4dc5213 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file +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.