在使用Homebrew在我的 Mac 上安装gnuplot后,我注意到它向文件传递了许多参数。更准确地说,这是我在终端上得到的输出configure
$ brew install gnuplot
==> Downloading http://downloads.sourceforge.net/project/gnuplot/gnuplot/4.6.3/gnuplot-4.6.3.tar.gz
Already downloaded: /Library/Caches/Homebrew/gnuplot-4.6.3.tar.gz
==> ./configure --prefix=/usr/local/Cellar/gnuplot/4.6.3 --with-readline=/usr/local/opt/readline --with-gd=/usr/local/opt/gd --disable-wxwidgets --without-cairo --without-latex --without-tutorial
然后我明白了为什么我的Mac上的版本比我的Ubuntu上的版本差。因此,浏览网络我发现为了能够使用终端,我需要添加安装标志。此外,还建议使用和。直观地解析我在屏幕上的输出(我在上面粘贴),我组成了其他标志,例如and ,我得到了以下输出wxt
--wx
--pdf
--with-x
--cairo
--tutorial
$ brew install gnuplot --wx --cairo --pdf --with-x --tutorial
==> Downloading http://downloads.sourceforge.net/project/gnuplot/gnuplot/4.6.3/gnuplot-4.6.3.tar.gz
Already downloaded: /Library/Caches/Homebrew/gnuplot-4.6.3.tar.gz
==> ./configure --prefix=/usr/local/Cellar/gnuplot/4.6.3 --with-readline=/usr/local/opt/readline --with-pdf=/usr/local/opt/pdflib-lite --with-gd=/usr/local/opt/gd --without-latex --without-tutorial
==> make
==> make install
� /usr/local/Cellar/gnuplot/4.6.3: 49 files, 5.4M, built in 37 seconds
现在我的问题是:我在哪里可以找到用于Homebrew安装的可接受参数列表,例如gnupot的参数列表?此外,不知何故它不接受我的--tutorial
:(