如何在ubuntu20.04上安装gnuplot 5.4

如何在ubuntu20.04上安装gnuplot 5.4

我正在使用 Ubuntu 20.04,使用 Gnuplot 5.2.8,但只有一些功能是最新版本。

我的问题具体是。如何在 ubuntu 20.04 上升级 Gnuplot 5.4.0?

感谢社区

答案1

对于带有 qt 终端的 gnuplot 5.4.1:

sudo apt install qtbase5-dev qtbase5-dev-tools libqt5svg5-dev qttools5-dev-tools

cd ~
wget https://jaist.dl.sourceforge.net/project/gnuplot/gnuplot/5.4.1/gnuplot-5.4.1.tar.gz
tar -xvzf gnuplot-5.4.1.tar.gz
cd gnuplot-5.4.1

./configure --with-qt=qt5
make -j # uses more jobs for faster compiling and linking
make check # make a test before installing
sudo make install # a better method would be to use checkinstall -> creates a deb

cd ~
rm -rf gnuplot-5.4.1*

相关内容