From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ista Zahn Subject: Re: Trouble using julia with org-babel Date: Wed, 29 Oct 2014 22:53:25 -0400 Message-ID: References: <0B377BAB-18B0-4F12-9A84-AD0836E4C171@ur.rochester.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjfs1-0001Tp-95 for emacs-orgmode@gnu.org; Wed, 29 Oct 2014 22:53:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xjfrw-0001PZ-CB for emacs-orgmode@gnu.org; Wed, 29 Oct 2014 22:53:53 -0400 Received: from mail-ob0-x22b.google.com ([2607:f8b0:4003:c01::22b]:52779) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjfrw-0001PR-7L for emacs-orgmode@gnu.org; Wed, 29 Oct 2014 22:53:48 -0400 Received: by mail-ob0-f171.google.com with SMTP id wp18so3477033obc.2 for ; Wed, 29 Oct 2014 19:53:47 -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: "Doyley, Marvin M." Cc: "emacs-orgmode@gnu.org" On Wed, Oct 29, 2014 at 10:09 PM, Doyley, Marvin M. wrote: > I am using release-0.3.0 what version are you using. I am also using ob-julia.el I'm using julia version 0.3.1 with GNU Emacs 24.4.1 and Org-mode version 8.2.10. I'm using the ob-julia.el distributed with org-plus-contrib. Best, Ista > Cheers, > M > > Sent from my iPad > >> On Oct 29, 2014, at 9:43 PM, Ista Zahn wrote: >> >> On Wed, Oct 29, 2014 at 12:35 PM, Doyley, Marvin M. >> wrote: >>> >>> Hi there, >>> >>> I have been play with julia the last couple of weeks and have been having >>> some issues when I try to use it in org-babel >>> >>> More specifically, It get the following error >>> >>> ERROR: unsupported or misplaced expression using >>> in _start at ./client.jl:394 >>> in _start at /julia/usr/lib/julia/sys.dylib >>> >>> >>> When I execute the following code block >>> >>> #+begin_src julia >>> using Winston >>> #+end_src >> >> I get the same thing, though both of these variations work for me: >> >> #+begin_src julia >> using Winston >> 1 + 1 >> #+end_src >> >> #+RESULTS: >> : 2 >> >> #+begin_src julia :results output >> using Winston >> #+end_src >> >> Hope this helps, >> Ista >>> >>> #+RESULTS: >>> >>> I should mention, that everything works perfectly in eshell or when I >>> execute simple code blocks like >>> >>> >>> #+begin_src julia >>> linspace(0,10,5) >>> #+end_src >>> >>> #+RESULTS: >>> | 0 | >>> | 2.5 | >>> | 5 | >>> | 7.5 | >>> | 10 | >>> >>> >>> Does Any body know how to resolve this issue. >>> >>> Cheers, >>> M