SkyWeather2 Installation Guide

In a previous post, I raved about the SwitchDoc Labs SkyWeather2 KickStarter project. When you purchase the kit, there is an option to buy an SD Card with all the required software installed. I passed on it, and cloned the SkyWeather2 software from Github.

To get it all working, I had to sort through all of the dependencies. This took time.

As far as I know, there is no documentation anywhere that describes how to get the SkyWeather2 system up and running from scratch. So – Ol’ Sopwith decided to do something about it.

I created a bash script that installs all of the required application and Python module dependencies. In addition, I wrote a detailed 18 page “How-To” guide.

Hopefully, this makes it easier to get your SkyWeather2 up and running if you choose the DIY route.

Sopwith

Create a Custom PI OS Image

Anyone who has ever messed with a Raspberry Pi knows the drill. You download the latest Pi OS release image and burn it to an SD Card. Then you slide the card into the Pi and power it up. The Pi boots, you login with the default credentials, and you run ‘sudo rasp-config’.

You configure your WiFi access point, locale, keyboard, and timezone. You enable SSH, I2C, Camera, and whatever else you need for IO. Next, you run ‘sudo apt update’, ‘sudo apt upgrade’, and reboot. Finally, you log back in and install all your favorite software that is not installed on the base image (p7zip, pip, i2ctools, midnight commander, etc.)

For casual Pi users, this is a one-time or rare task. For experienced Makers who have gone through this drill dozens, if not hundreds of times – it is a real pain. For Makers who write lots of code and/or software installation scripts, this process is beyond irritating.

Continue reading