Windows Prerequisites Installation
Installing Python
To install Python, go to and download the latest version.
Then, run the executable and follow the installation instructions.
Installing the Pillow package
After you have installed Python, you need to install the Pillow package that's used for resizing images and creating thumbails.
To do that, open Powershell and run the following command
Shell
pip install Pillow
Note
If the command above doesn't work, or you get an error that pip could not be found, run the command below instead
Shell
python -m install Pillow
You now have all the prerequisites you need installed! Go back to Creating an image gallery to learn how to create a gallery!