Installing Pillow
Because we’re using images, we need to install Pillow (https://pypi.org/project/pillow/), which adds image-processing capabilities to our Python interpreter.
In the Terminal, stop the server and do the following:
- For macOS, run the following command:
pip3 install pillow
- For Windows, run the following command:
pip install pillow
Now that Pillow has been installed, let’s learn how to manage Django migrations.