No se puede iniciar Octave 3.8.0 en modo GUI

5

Instalé Octave 3.8.0 usando homebrew. La Octava Preguntas frecuentes oficiales dice que puedo usar la opción --force-gui para comenzar la octava con la GUI.

Pero cuando uso el comando octave --force-gui en el terminal, nada sucede de manera diferente. Es decir, Octave todavía se inicia en la interfaz de línea de comandos.

¿Cómo puedo arreglar eso?

    
pregunta hadi 19.02.2014 - 06:38

2 respuestas

4

Encontré la respuesta y la publicaré aquí para cualquier persona que la necesite.

Octave gui requiere el paquete qt (consulte la respuesta en bpabbot aquí ). Entonces, para usar la interfaz gráfica de usuario, se debe instalar octava con este comando:

brew install octave --with-qt --with-fltk

O si ya lo has instalado sin qt , puedes reinstall it:

brew reinstall octave --with-qt --with-fltk

Sin embargo, en su estado actual, la fórmula para la versión 3.8.0 de octava tiene un problema y no instala --with-qt . Hay un error reportado, y será arreglado para la versión 3.8.1. Puede ver más detalles aquí .

    
respondido por el hadi 23.02.2014 - 19:57
6

Tuve un problema similar con Octave 4.0.0, cuando lo instalé como Hadi sugirió que recibí este mensaje:

The graphical user interface is disabled by default since it is still buggy on
OS X; use brew with the option --with-gui to enable it.


Octave was compiled with gnuplot; enable it via graphics_toolkit('gnuplot').
All graphics terminals can be used by setting the environment variable GNUTERM
in ~/.octaverc, and building gnuplot with the corresponding options.

setenv('GNUTERM','qt')    # Requiers QT; install gnuplot --with-qt
setenv('GNUTERM','x11')   # Requires XQuartz; install gnuplot --with-x11
setenv('GNUTERM','wxt')   # Requires wxmac; install gnuplot --with-wxmac
setenv('GNUTERM','aqua')  # Requires AquaTerm; install gnuplot --with-aquaterm

You may also set this variable from within Octave. For printing the cairo backend
is recommended, i.e., install gnuplot with --with-cairo, and use

print -dpdfcairo figure.pdf


When using the the qt or fltk toolkits then invisible figures do not work because
osmesa does currently not work with the Mac's OpenGL implementation. The usage of
gnuplot is recommened.

Lo que funcionó para mí fue agregar el --with-gui:

brew install octave --with-qt --with-fltk --with-gui

O reinstalar:

brew reinstall octave --with-qt --with-fltk --with-gui
    
respondido por el Luis F. 21.03.2016 - 17:28

Lea otras preguntas en las etiquetas