I currently have a small example blog online.
It works as expected, except for the image upload.
https://django.watchduck.net/posts/create
Trying to upload an image creates an error, because Pillow is not installed:
ModuleNotFoundError at /posts/create
No module named 'PIL'
So I could probably install it like this:
[watchduck@opal9 my_django_app]$ pip install Pillow
.
But I would like to know what I am doing.
Would that be a global installation, or would it be specific to this app?
I would prefer to make such installations specific to each Django app.
For Pillow it probably does not matter.
But I could have different Django apps, that require different versions of NumPy.