gnuplot 安裝後若需要 png 類型的輸出,可以依以下步驟安裝:
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get build-dep gnuplot
sudo apt-get install libgd-dev libpng-dev
wget https://sourceforge.net/projects/gnuplot/files/gnuplot/5.2.8/gnuplot-5.2.8.tar.gz
tar -xzf gnuplot-5.2.8.tar.gz
cd gnuplot-5.2.8
./configure --with-gd --with-png
make
mack check
sudo make install
說明:
在使用 wxMaxima 時,inline plot 需要 gnuplot 的 png 類型輸出,所以安裝 gnuplot 時,必需要有安裝 png 類型的 terminal。
可以在 gnuplot> 輸入 set terminal 查看安裝的 terminal 類型。