I am having a few issues setting up javaplot into my application.
I have downloaded the source files from: http://sourceforge.net/projects/gnujavaplot/files/latest/download
and i have dragged the .jar package into the default java libraries folder /Library/Java/Home/lib/ext (i am running mac os x 10.7)
after following the instructions on the web site i have the following program
import com.panayotis.gnuplot.JavaPlot;
public class Test {
public static void main(String[] args) {
JavaPlot p = new JavaPlot();
p.addPlot("sin(x)");
p.plot();
}
}
which compiles fine but when i try to run the program i get the following error:
Exception in thread "main" com.panayotis.gnuplot.GNUPlotException: GnuPlot executable
"gnuplot" not found. Please provide gnuplot path to the constructor of GNUPlot.
at com.panayotis.gnuplot.GNUPlot.<init>(GNUPlot.java:161)
at com.panayotis.gnuplot.GNUPlot.<init>(GNUPlot.java:58)
at com.panayotis.gnuplot.JavaPlot.<init>(JavaPlot.java:31)
at Test.main(Test.java:4)
Could anyone shed any light on this error? Any help would be great thanks
Leo
i had the same problem. This problem was, because "gnuplot" was not in my macOS. So, you can install with the MacPorts. http://guide.macports.org And, then:
and wait.... when finished the process, you can run de JavaPlot.