jupyter
jupyter copied to clipboard
An interface to communicate with Jupyter kernels.
Hello! I am using Org mode with `jupyter-python` code blocks to edit Jupyter notebooks. I need to use `pandoc` for `ipynb` `org` conversions, which does not convert output cells; so...
In `jupyter-kernel-process.el` function `jupyter--start-kernel-process` checks the connection file `conn-file` 's atime to avoid bugs where jupyter starts kernels using the same port in a loop. Obviously this does not work...
I tried updating my emacs packages today and I noticed that `jupyter-inspect-at-point` did not work in org source blocks for e.g. `jupyter-python` blocks. I recently tried to setup `eglot` with...
I'd quite like to build the command I want to run interactively by sending the lines one-by-one with `jupyter-eval-line-or-region` before putting this in an org-babel plot. This is useful when...
As state in #575 and #583
Here's a sample code block and some result-block headers to create a figure: ``` #+name: plot_test #+BEGIN_SRC jupyter-python :file junk.png :exports both :display image/png import numpy as np import matplotlib.pyplot...
I've been getting the following `⛔ Warning (org-element): ‘org-element-at-point’ cannot be used in non-Org buffer # (fundamental-mode)` whenever I call `M-x` with point inside an jupyter org code block. It...
As titled, given a notebook-esque org file as follows ``` #+TITLE: My Notebook #+PROPERTY: header-args:jupyter-python :session my_session :results output :wrap example :exports both #+begin_src jupyter-python import os from glob import...
`(jupyter-org--set-src-block-cache)` throws `error: (wrong-type-argument markerp nil)` because ` jupyter-org--src-block-cache` is initialised as a nested list.
This PR introduces two variables to control the integration with org: - jupyter-org-want-keybinding - jupyter-org-want-integration which are true by default to keep the old behavior. I believe org interaction should...