我想将数字绘制成PNG格式(避免使用转换),但我的Gnuplot发行版不提供PNGCAIRO终端。我该如何安装/启用它?我在Mac OS X 10.6上使用Gnuplot 4.4,patchlevel 2。
[me]machine @ test $ gnuplot
G N U P L O T
Version 4.4 patchlevel 2
last modified Wed Sep 22 12:10:34 PDT 2010
System: Darwin 10.8.0
Copyright (C) 1986-1993, 1998, 2004, 2007-2010
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help seeking-assistance"
immediate help: type "help"
plot window: hit 'h'
Terminal type set to 'x11'
gnuplot> set terminal pngcairo
^
unknown or ambiguous terminal type; type just 'set terminal' for a list
答案 0 :(得分:19)
如果您正在运行homebrew,则只需一个命令行即可安装所有内容
brew install gnuplot --with-cairo
答案 1 :(得分:5)
如果您的软件包管理器(例如macports
或fink
)没有合适的gnuplot,那么您可能需要自己从源代码构建gnuplot。 Gnuplot本身并不太难,但如果你想要一个特定的终端(例如pngcairo
),你需要在构建gnuplot之前自己下载并构建依赖项 - 在本例中为libcairo
。
如果您的gnuplot发行版在编译时能够找到png
或者您的包管理器包含它,那么Gnuplot也有一个常规的libgd
终端。
告诉您启用哪些终端的简单方法是在交互式gnuplot窗口中输入set terminal
。那将打印出你的gnuplot能够使用的所有终端的列表(这取决于它编译的库)
很抱歉,如果这不是很多帮助。
答案 2 :(得分:4)
我将gnuplot升级到5.0.1并遇到同样的问题。这就是我的工作。
要安装gnuplot 5.0.1,请从here下载源文件,然后:
#decompress it:
tar -xvf gnuplot-5.0.1.tar.gz
#install the dependency libraries for cairo-based terminals, like pdfcairo, pngcairo
sudo apt-get install libcairo2-dev
sudo apt-get install libpango1.0-dev
#build it:
cd gnuplot-5.0.1
./configure
make
#install it:
sudo make install