You are currently browsing the archives for the gnuplot category.
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jul | ||||||
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 | |||
10. June 2010 by admin.
gnuplot is a great open cross platform data visualization application, that beats just about every other graphing application hands down specially with large volumes of data. I use gnuplot on a daily basis to analyze application and systems performance data on my linux and windows machines. I was hoping there would be an OSX binary ready for me to download and use (wishful thinking). In order to build gnuplot on OSX from source, you will need to do the following
—x from miscdebris.net x—
1 |
export PATH=/Library/Frameworks/GTK+.framework/Resources/bin:$PATH |
pkg-config cairo --libs works.Then download Gnuplot 4.4.0, untar, configure and compile it:
tar xzf gnuplot-4.4.0.tar.gzcd gnuplot-4.4.0mkdir build && cd build../configure --with-readline=bsd --disable-wxwidgets. In the configure output you should find something like
wxt terminal: no (requires C++, wxWidgets>2.6, cairo>0.9, pango>1.10) cairo-based pdf and png terminals: yes
makesudo make installPosted in gnuplot, open source, OSX | No Comments »