Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GNU Octave reports: unknown or ambiguous terminal type on OS X [duplicate]

Tags:

octave

gnuplot

I am trying to plot with Octave and GNUPlot on OS X 10.10.5. I have Octave and GNUPlot installed via homebrew but when I try to plot I get the following error

gnuplot> set terminal aqua enhanced title "Figure 1" size 560 420  font "*,6.66667" dashlength 1
                  ^
line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list
WARNING: Plotting with an 'unknown' terminal.
No output will be generated. Please select a terminal with 'set terminal'.
like image 970
7Grok Avatar asked Oct 07 '15 18:10

7Grok


1 Answers

My solution was to install aquaterm e.g.

brew install Caskroom/cask/aquaterm

and then do

brew reinstall gnuplot --with-aquaterm
like image 65
7Grok Avatar answered Oct 11 '22 17:10

7Grok