🙋 python config for orgmode graph

This commit is contained in:
2021-09-14 01:49:47 +09:00
parent 673742e7fc
commit 2e09601464

View File

@ -1252,3 +1252,24 @@ using =svlangserver=
;;"--ytdl-format=bestvideo[height<=?720]+bestaudio/best")
;;(message "Starting streaming..."))
#+end_src
** Python
- prequisite
#+begin_src shell
paru -S jupyter python-pip
pip install matplotlib numpy pandas tabulate
#+end_src
- configuration for emacs table
#+begin_src emacs-lisp
(use-package jupyter
:straight t)
(org-babel-do-load-languages
'org-babel-load-languages
'((emacs-lisp . t) ;; Other languages
(shell . t)
;; Python & Jupyter
(python . t)
(jupyter . t)))
(org-babel-jupyter-override-src-block "python")
#+end_src