I have a local notebook server and I'd like to be able to use the image manipulation modules from scipy. They seem to import just fine, but I never get any images, only what appear to be commands.
import pylab
from scipy import misc
A = misc.face()
pylab.imshow(A)
Outputs
AxesImage(80,48;496x384)
Do I need some additional configuration, or a plugin to make it work?