Raspberry Pi Awesome // Install Scripts for Python 3, OpenCV, Dli & Others
By Justin

I've found setting up my Raspberry Pi microcontrollers a little cumbersome and, frankly, annoying. Typing the same commands over and over. Sometimes I need to flash my drive and start from 0. Sometimes I need a new pi. All these things happen over and over. So, here we are, some install scripts to hopefully make our lives easier.
You may hit snags. If you find the solution please comment below and/or make a pull request on our official Pi Awesome repo.
Enjoy!
The goal is to have these installed and ready to rock:
Suggestions / Requirements
- Are you comfortable with terminal? If not, this is probably not for you.
- Raspbian Stretch Installed. Here's a guide we made to install it as well as set it up on your local network: Guide here.
- Do you have a USB Web Camera? I use this one <- affiliate link (non-affiliate)
- You could also use the Raspberry Pi Camera Module V2 (affiliate link)
These scripts may work with other versions of Linux (specifically Debian) but we haven't tested. Have you? Please let us know.
Install OpenCV on Raspberry Pi
Time: Up to 3 hours.
$ cd ~/
$ wget https://raw.githubusercontent.com/codingforentrepreneurs/Raspberry-Pi-Awesome/master/scripts/setup-opencv.sh && chmod +x setup-opencv.sh && sudo ./setup-opencv.sh
Test OpenCV Install with this post
Install Dlib & Face Recognition
Time: Up to 1.5 hours.
Recommend: OpenCV already installed to fully make use of Face Recognition
$ cd ~/
$ wget https://raw.githubusercontent.com/codingforentrepreneurs/Raspberry-Pi-Awesome/master/scripts/setup-face-recognition.sh && chmod +x setup-face-recognition.sh && sudo ./setup-face-recognition.sh
Install gPhoto2 for DSLR Control
Our script is an exact copy of gphoto2-updater. We may change it in the future which is why it exists with these other scripts (instead of just being linked). If you have time, please thank the creater of the original script Gonzalo Cao Cabeza de Vaca.
$ cd ~/
$ wget https://raw.githubusercontent.com/codingforentrepreneurs/Raspberry-Pi-Awesome/master/scripts/gphoto2-updater.sh && chmod +x gphoto2-updater.sh && sudo ./gphoto2-updater.sh