Este é o meu bloco de código-fonte:
#+BEGIN_SRC python
print "hello"
#+END_SRC
A saída é sempre:
#+RESULTS:
: None
Esta é a minha configuração org-babel:
(org-babel-do-load-languages
'org-babel-load-languages
'((python . t)
(C . t)
(calc . t)
(latex . t)
(java . t)
(ruby . t)
(scheme . t)
(sh . t)
(sqlite . t)
(js . t)))
Python está no meu PATH e executável via terminal.
Os blocos SRC do Emacs-lisp funcionam muito bem.
Por que eu recebo em None
vez de hello
?