from PIL import Image api_1 | ModuleNotFoundError: No module named 'PIL'
from PIL import Image api_1 | ModuleNotFoundError: No module named 'PIL'
在运行docker容器之后找不到名为docker的模块错误。
您需要在 运行 容器之前安装 pillow。
在您的 requirements.txt
文件中添加 Pillow==9.0.0
或在 Dockerfile 中添加 RUN pip install Pillow
。
您需要在 运行 容器之前安装 pillow。
在您的 requirements.txt
文件中添加 Pillow==9.0.0
或在 Dockerfile 中添加 RUN pip install Pillow
。