help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Mac OS X: Octave and Gnuplot> sh: gnuplot: command not found


From: John W. Eaton
Subject: Re: Mac OS X: Octave and Gnuplot> sh: gnuplot: command not found
Date: Wed, 23 Apr 2008 12:52:51 -0400

On 23-Apr-2008, Mark McClure wrote:

| 
| 
| athale-rernat wrote:
| > 
| > 
| > I have added to my .profile file the following paths:
| > alias
| > gnuplot="/Applications/gnuplot/Gnuplot.app/Contents/Resources/bin/gnuplot"
| > alias
| > octave="/Applications/gnuplot/Octave.app/Contents/Resources/bin/octave"
| > 
| > Gnuplot plots very nicely. Octave runs and does all non-graphical things I 
| > tried at first shot. When I call plot commands, I get an error:
| > 
| > 
| 
| The alias command sets up a variable that applies only in your shell.
| It won't help octave find gnuplot.  You probably need to set up a symbolic
| link to gnuplot in some directory on your path.  Try:
| 
| ln -s /Applications/gnuplot/Gnuplot.app/Contents/Resources/bin/gnuplot \
| /usr/local/bin/gnuplot
| 
| If this complains about permission precede this with a sudo and enter your
| password when prompted.

Or, add the directory containing gnuplot to your PATH before starting
Octave.  In your .profile:

  PATH=$PATH:/Applications/gnuplot/Gnuplot.app/Contents/Resources/bin

Or, use

  gnuplot_binary 
("/Applications/gnuplot/Gnuplot.app/Contents/Resources/bin/gnuplot");

in Octave.  But probably setting PATH is better because then you can
also start Octave from the shell.

jwe


reply via email to

[Prev in Thread] Current Thread [Next in Thread]