Image processing with Python

I wanted to scan through some images to get some basic information and I found some programs I wrote 21 years ago that imported Image. That no longer works. Then I found one from 2008 that imports Image from PIL…and that works.

Playing with docker…apt vs apt-get

Was following a docker tutorial where figlet was installed in a ubuntu image by using apt-get install figlet. Evidently I didn’t fully understand the difference between apt and apt-get. Because I typed apt update then apt install figlet and it failed because it wasn’t found. I then tried apt-get install figlet assuming it would fail…but …