jupyter icon indicating copy to clipboard operation
jupyter copied to clipboard

An interface to communicate with Jupyter kernels.

Results 212 jupyter issues
Sort by recently updated
recently updated
newest added

Hi all, I'm receiving the above error. I am using the function in the following block in my `config.el` in Doom: ```lisp (after! org (setq org-directory "~/Documents/org/") (setq org-roam-directory "~/Documents/org/roam/")...

I get a `Wrong major-mode` error when using `python-ts-mode` (set through `major-mode-remap-alist`). This is caused by the fact that the Jupyter REPL starts in `python-ts-mode`, but the org-src edit buffer...

thank you for emacs-jupyter. I'm trying it for a week and it looks like working solution. I just stumped upon following workflow I'd like to have running: When I browse...

Potential fix for #446 `jupyter kernelspect` seems to be spitting a few warnings before the json. This PR strips out that and parses only the json. Also, prints out a...

Possibly related to #464. ```org-mode #+begin_src python :async yes :session ./gpu-ssh.json import scanpy print("Hello World!") #+end_src ``` Evaluating the source block gives me this: `org-babel-jupyter-session-key: Need a valid session and...

I tried following the clues at https://github.com/emacs-jupyter/jupyter/issues/61, but I did not succeed. First, I ran: ``` #+BEGIN_SRC sh docker pull jupyter/base-notebook docker run --rm --name test -p 56406-56410:56406-56410 \ jupyter/base-notebook...

When calling the babel environment ` SRC jupyter-python :session bad :kernel Py310 print("org babel") #+END_SRC ` the following error encounters ` Executing Jupyter-Python unknown at position 190806... Launching py310 kernel......

Here is my config: ``` (org-babel-do-load-languages 'org-babel-load-languages '( (gnuplot . t) (latex . t) (python . t) (jupyter . t) (shell . t) (dot . t))) ``` Here is the...

Hi there. Thanks for this amazing package! I noticed this little bug that I think it might be easy to solve. If I set a working directory via :dir, the...

Currently, emacs-jupyter display audio/video object itself. ```python #+begin_src jupyter-python :session tqdm :async yes import IPython.display as ipd import numpy sr = 22050 # sample rate T = 0.5 # seconds...