Dies ist mein Quellblock:
#+BEGIN_SRC python
print "hello"
#+END_SRC
Die Ausgabe ist immer:
#+RESULTS:
: None
Dies ist meine Org-Babel-Konfiguration:
(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 befindet sich auf meinem Pfad und kann über das Terminal ausgeführt werden.
Emacs-lisp-SRC-Blöcke funktionieren einwandfrei.
Warum bekomme ich None
statt hello
?