answered 10 years ago
I found the solution for this problem. All I had to do was to replace the following line:
list_plot(...)
by the following two lines:
p = list_plot(...)
p.show()
And then a plot was plotted.