You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
Hi,
As you can observe from the following stacktrace, we need to also provide pillow in the environment.
Traceback (most recent call last):
File "run_segmentation.py", line 11, in
import util.io
File "/home/s/DepthNets/DPT/util/io.py", line 9, in
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
Traceback (most recent call last):
File "run_segmentation.py", line 11, in
import util.io
File "/home/s/DepthNets/DPT/util/io.py", line 9, in
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
The text was updated successfully, but these errors were encountered:
Hey @Salvatore-tech, This error message says "ModuleNotFoundError: No module named 'PIL'". This indicates that the Python Imaging Library (PIL) is not installed in your environment.
Use this code to install PIL, pip install pillow
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
As you can observe from the following stacktrace, we need to also provide pillow in the environment.
Traceback (most recent call last):
File "run_segmentation.py", line 11, in
import util.io
File "/home/s/DepthNets/DPT/util/io.py", line 9, in
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
Traceback (most recent call last):
File "run_segmentation.py", line 11, in
import util.io
File "/home/s/DepthNets/DPT/util/io.py", line 9, in
from PIL import Image
ModuleNotFoundError: No module named 'PIL'
The text was updated successfully, but these errors were encountered: