1.单独使用Pillow包时,图片会弹出新窗口显示: from Pillow import Image img = Image.open('data/empire.jpg') img.show() 2.我想要在jupyter notebook的浏览器上边显示图片怎么办? 可以使用matplotlab.pyplot【显示图片工具】 和 Pillow【图片处理工具】 结合使用 %matplotlib inline import matplotlib.pyplot as plt from PIL import Image img = Image.open('./img.png', 'r') pl