Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adafruit/Raspberry-Pi-Installer-Scripts
https://github.com/adafruit/Raspberry-Pi-Installer-Scripts
raspberry-pi
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/adafruit/Raspberry-Pi-Installer-Scripts
- Owner: adafruit
- Created: 2016-11-27T20:18:31.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-09-22T20:46:42.000Z (about 2 months ago)
- Last Synced: 2024-10-29T17:39:16.070Z (15 days ago)
- Topics: raspberry-pi
- Language: Shell
- Homepage:
- Size: 387 KB
- Stars: 381
- Watchers: 27
- Forks: 160
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raspberry-Pi-Installer-Scripts
Some scripts for helping install Adafruit HATs, bonnets, add-on's, & friends!
Many scripts are based heavily on get.pimoroni.com scripts!
* Install i2s amplifier with: curl -sS https://raw.githubusercontent.com/adafruit/Raspberry-Pi-Installer-Scripts/master/i2samp.sh | bash
## Python Scripts
We are in the process of converting our Shell Scripts to Python. Instructions for running specific scripts are available in the [Adafruit Learning System](https://learn.adafruit.com/). Here are the general setup instructions.
### Dependencies
- Python 3
- [Adafruit_Python_Shell](https://github.com/adafruit/Adafruit_Python_Shell)
- [Click](https://pypi.org/project/click/)### Prepare your system
To install the dependencies for the python scripts, run the following commands:
```bash
sudo apt-get install python3-pip
sudo pip3 install --upgrade click
sudo pip3 install --upgrade setuptools
sudo pip3 install --upgrade adafruit-python-shell
```
Then to run the python script, type the following replacing "scriptname.py" with the actual script name:```bash
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.