org: jupyter prerequisites

Add some more instructions to use +jupyter for jupyter babel blocks.
This commit is contained in:
benneti 2020-12-04 15:59:01 +01:00 committed by GitHub
parent d88e0795b6
commit be21611571
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,6 +173,8 @@ esoteric features:
+ To execute babel code blocks, you need whatever dependencies those languages
need. It is recommended you enable the associated =:lang= module and ensure
its dependencies are met, e.g. install the =ruby= executable for ruby support.
To use ~jupyter kernels~ you need the =+jupyter= flag, the associatet kernel as
well as the ~jupyter~ program.
+ =org-roam= (with the =+roam= flag) requires =sqlite3= to be installed.
** MacOS
@ -185,6 +187,8 @@ brew install gnuplot
#+BEGIN_SRC sh
pacman -S texlive-core texlive-bin texlive-science
pacman -S gnuplot
# +jupyter needs jupyter
pacman -S jupyter
#+END_SRC
** NixOS
@ -192,6 +196,8 @@ pacman -S gnuplot
environment.systemPackages = with pkgs; [
# any less than medium isn't guaranteed to work
texlive.combined.scheme-medium
# +jupyter needs jupyter
(python38.withPackages(ps: with ps; [jupyter]))
];
#+END_SRC