I have successfully installed Pillow:
chris@MBPvonChristoph sources % python3 -m pip install --upgrade Pillow
Collecting Pillow
Using cached Pillow-9.0.1-1-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB)
Installing collected packages: Pillow
Successfully installed Pillow-9.0.1
but when I try to use it in pycharm, I got:
Traceback (most recent call last):
File "/Users/chris/PycharmProjects/pythonProject2/main.py", line 1, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
or using it in Blender, I got:
ModuleNotFoundError: No module named 'PIL'
I am not a Python lib installing pro so obviously I did something wrong. But how do I fix that?
I am working on an M1 Macbook.