8

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にあるものよりも貧弱なバージョンである理由を理解しました。したがって、ネットを閲覧すると、端末を使用できるようにするには、インストール用のフラグを追加する必要があることがわかりました。さらに、 と も使用することが提案されました。画面に表示された出力 (上に貼り付けたもの) を視覚的に解析し、 や などの他のフラグを作成し、次の出力を得ました。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

ここで私の質問は次のとおりです。 gnupotの here など、 Homebrewインストールに使用する受け入れ可能な引数のリストをどこで見つけることができますか? さらに、どういうわけかそれは私の:(を受け入れませんでした--tutorial

4

1 に答える 1