In Fenics 2016.1.0 I was using pyplot and could see on my screen the plots using
plt.show(block=False)
Today I moved to 2016.2.0 and it seems the default backend is now WebAgg, so I receive the message
To view figure, visit http://127.0.0.1:8000
Unfortunately this does not work, as the browser can’t establish a connection to this adress.
Also, even if it would work, I would prefer to use another backend because the WebAgg server is interrupting the progress of the running code. I tried to use
pyplot.switch_backend('GTKAgg')
and many other backend, but it seems they require pygtk, which is not installed. In fact pygtk is installed on my computer, so this has something to do with the container I guess? Now I am not sure what to do, can anyone help or give some information?