brew install gnuplot --with-qt --with-x11不起作用

gas*_*mps 5 homebrew gnuplot

我今天尝试使用自制软件在Mac(Mojave 10.14.2)上安装gnuplot,并且它brew不接受--with-qt或--with-x11

(我尝试了其他变体,例如--with-qt5和--with-x,没有运气。)

酿造选项gnuplot没有报告任何选择。

我们应该如何在gnuplot上安装qt和x11终端?

gas*_*mps 5

我联系了最近修改 gnuplot 公式的 brew 维护者。Brew 不再允许公式中的选项,因此无法再执行“brew install gnuplot --with-x11”,但“brew install gnuplot”会从 cairo 包中安装 qt 终端和有用的终端,但不会安装 x11 终端。当公式被打破时,我在几个小时的窗口内抓住了公式。它现在可以工作,但无法安装 x11 终端。(对于愿意维护公式的人来说,这可能是值得的


Mar*_*ell 1

我不知道官方的台词/故事/解释,我只是通过实验得出了以下内容。如果有人知道得更清楚,请告诉我,我会删除它。

我刚刚运行brew info gnuplot,并且出现了X11和选项。Qt然后我跑了brew update,他们现在确实走了。我注意到brew info gnuplot现在显示Qt“必需”

因此,我删除了 gnuplot ,brew rm gnuplot然后再次安装了它brew install gnuplot,它安装了所需的且迄今为止缺少的依赖项Qt

如果我现在这样做:

export GNUTERM=qt
gnuplot
Run Code Online (Sandbox Code Playgroud)

它报告:

Terminal type is now 'qt'
Run Code Online (Sandbox Code Playgroud)

下面弹出一个Qt窗口:

gnuplot> plot sin(x)
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述