Using both iterm and ghostty on Mac OS 15.5, I am seeing the same thing when trying to display an image inline in the terminal
# generate the image
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0., 2 * np.pi, 101)
y = np.sin(x)
fig, ax = plt.subplots()
ax.plot(x, y)
fig.savefig("test.png")
fig.show()
This pops a window, more or less like I expect, and I see the same thing in preview:

However, when I try to view the image in the terminal this is what I see:
viu test.png
I’m just wondering if I’m missing something here
