I had a similar problem when trying to use Skimage on my Jupyter laptop on Windows. I decided to show my image using cv2 using a workaround.
import cv2
img = cv2.imread(C:/Users/src/photos/img.jpg)
plt.imshow(img)
Hope this is helpful. I am new to all of this.
source
share