Posts

Showing posts with the label ubuntu

Installing Gnuplot 5.0 on Ubuntu

Installing Gnuplot 5.0 on Ubuntu I have been trying to install Gnuplot 5.0 from source on Ubuntu. I followed the procedure given in the blog: Installing gnuplot from source I used the following commands: tar xzf gnuplot-5.0.0.tar.gz mkdir build cd build ../gnuplot-5.0.0/configure --with-readline=gnu make Everything until the configure command works fine. However, I end up getting the following error when I run the make command: In file included from ../../gnuplot-5.0.0/src/qtterminal/QtGnuplotWindow.cpp:187:0: ./ui_QtGnuplotSettings.h:13:25: fatal error: QtGui/QAction: No such file or directory #include <QtGui/QAction> Could someone guide on how to fix this issue? If there is an alternative easier way to install gnuplot 5.0.0. that would be helpful as well. Did you install qtbase5-dev ? Or any other qt library component? – Willem Van Onsem Apr 8 '15 at 22:03 ...