Last Updated: February 25, 2016
·
956
· amitsaha

In-place Python code execution in Emacs org mode

If you want to turn-on in-place Python code execution when using Emacs org mode, add the following lines in your init.el file (or equivalent):

(org-babel-do-load-languages
'org-babel-load-languages
'((python . t)))

Of course, there are other languages for which you can do the same.