From mboxrd@z Thu Jan 1 00:00:00 1970 From: Omid Subject: Re: gnuplot not working with babel Date: Sun, 01 Jun 2014 23:01:58 -0400 Message-ID: <538BE926.1070505@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59789) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrIVi-000609-9a for emacs-orgmode@gnu.org; Sun, 01 Jun 2014 23:02:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrIVd-0004MB-Ig for emacs-orgmode@gnu.org; Sun, 01 Jun 2014 23:02:06 -0400 Received: from mail-yh0-x233.google.com ([2607:f8b0:4002:c01::233]:44390) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrIVd-0004M7-Ct for emacs-orgmode@gnu.org; Sun, 01 Jun 2014 23:02:01 -0400 Received: by mail-yh0-f51.google.com with SMTP id f73so3361508yha.38 for ; Sun, 01 Jun 2014 20:02:00 -0700 (PDT) Received: from [10.0.0.2] (host-207-254.fltavth.clients.pavlovmedia.com. [68.234.207.254]) by mx.google.com with ESMTPSA id l12sm6991376yhj.1.2014.06.01.20.01.59 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 01 Jun 2014 20:02:00 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org And searching with the keywords from the error you're getting, your first problem is solved by installing gnuplot.el (to drive gnuplot inside Emacs): https://lists.gnu.org/archive/html/emacs-orgmode/2013-07/msg00563.html Omid Sent from my Emacs On 06/01/2014 10:48 PM, Lawrence Bottorff wrote: > I'm just starting out with babel and can't get the example code to run > (http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html#sec-4) > : > > #+begin_src gnuplot :exports code :file file.png > reset > > set title "Putting it All Together" > > set xlabel "X" > set xrange [-8:8] > set xtics -8,2,8 > > set ylabel "Y" > set yrange [-20:70] > set ytics -20,10,70 > > f(x) = x**2 > g(x) = x**3 > h(x) = 10*sqrt(abs(x)) > > plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3 > #+end_src > > This produces > > org-babel-execute:gnuplot: Cannot open load file: no such file or > directory, gnuplot > > Also, I tried a straight org-plot/gnuplot call while the cursor was in a > table with similar results: > > org-plot/gnuplot: Cannot open load file: no such file or directory, > gnuplot > > I have gnuplot installed and the above code produces the expected output > graphic when run from the command line. I'm on U14.10, Emacs24.3.50.1, > and Org 8.2.3a. > > Also, I'm tired of typing the #+begin_src ... #+end_src block every > time. Is there a quicker key binding for this? > > LB