Ubuntu – gnuplot not showing the graph window

gnuplot

I am using gnuplot under ubuntu 12.10. When i type in terminal :

gnuplot> plot sin(x)

it only shows next step:

gnuplot> 

but it doesn't show the graph plotting windows. What can I do to find the problem?

Best Answer

You might be missing gnuplot-x11. Try to install it. In the commandline, do this:

sudo apt-get install gnuplot-x11
Related Question