From mboxrd@z Thu Jan 1 00:00:00 1970 From: Van L Subject: Re: Problem with python source block Date: Sat, 26 May 2018 20:00:01 +1000 Message-ID: References: Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fMVzh-0003MN-8B for emacs-orgmode@gnu.org; Sat, 26 May 2018 06:00:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fMVze-0000aB-05 for emacs-orgmode@gnu.org; Sat, 26 May 2018 06:00:13 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:35191) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fMVzd-0000Zk-QE for emacs-orgmode@gnu.org; Sat, 26 May 2018 06:00:09 -0400 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" To: "Doyley, Marvin M." Cc: "emacs-orgmode@gnu.org" > Doyley, Marvin M. writes: >=20 > I get an error I get a reproduction of your error outside of Emacs and Org Mode. Adapting an example from the list=E2=80=99s archive, the following = works. #+BEGIN_SRC elisp :results none (org-babel-do-load-languages 'org-babel-load-languages '((python . t))) #+END_SRC #+BEGIN_SRC python :results output a =3D 5 b =3D 16 print(a + b) #+END_SRC #+RESULTS: : 21