Nathaniel Nicandro

Results 156 comments of Nathaniel Nicandro

It looks like the Wolfram kernel only sends plots embedded in HTML. Is there a way to get the kernel to send `image/png` or `image/jpeg` data?

I don't think so. Can you copy the following code ```elisp (let ((jupyter--debug t)) (jupyter-repl-replace-cell-code "plt.plot([1, 2, 3])") (jupyter-repl-ret) (sleep-for 2)) ``` and inside the REPL buffer type `M-: C-y...

Whoops, I meant to replace `plt.plot([1, 2, 3])` with `Plot[Sin[x], {x, 0, 1}]`. So ```elisp (let ((jupyter--debug t)) (jupyter-repl-replace-cell-code "Plot[Sin[x], {x, 0, 1}]") (jupyter-repl-ret) (sleep-for 2)) ``` Could you retry...

It doesn't look like the kernel sent the `text/html` representation of the results ``` MESSAGE: (:iopub :execute-result (:execution_count 2 :data (:text/html :text/plain -Graphics-) :metadata (:text/html [] :text/plain []))) ``` otherwise...

I didn't notice the `2+2` case, could you also show what is printed to `*Messages*` when you replace `"Plot[Sin[x], {x, 0, 1}]"` with `2+2` in the code that I gave...

OK, thanks. I think I know what the issue is with not displaying anything when you type `2+2` and why `-Graphics-` doesn't show up either in the plot case. But...

Also I noticed that you are using Nix, do you have any suggestions for how to solve #196.

Can you check if #229 at least allows you to see something when you enter `2+2`. You will have to upgrade `emacs-jupyter` first.

That is a strange error. Could it have something to do with bad byte compilation? Can you try to delete all the elc files generated on install and call `byte-recompile-directory`...

@timlod Could you try again with the latest changes to the `next` branch. I just fixed an issue that seems to be related.