-
-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
latest Jupyter : REST API error: 404, "Not found" #500
Comments
UPDATE downgrading
|
wonder if this is the issue: jupyter-server/jupyter_server#1047? Potential breaking change in jupter_server 2.x |
Do you want to check this fix? #542 (comment) |
That fix has to do with the fact that |
By inspecting the backtrace, I added this workaround: (defun my-jupyter-api-http-request--ignore-login-error-a
(func url endpoint method &rest data)
(cond
((member endpoint '("login"))
(ignore-error (jupyter-api-http-error)
(apply func url endpoint method data)))
(:else
(apply func url endpoint method data))))
(advice-add
#'jupyter-api-http-request
:around #'my-jupyter-api-http-request--ignore-login-error-a) It works for me now, but I hope the bug will be fixed. |
Hi,
First, thanks a lot for this very nice package which I had working out of the box with my previous anaconda distribution. I recently decided to switch from conda to mamba and use the conda-forge channel. There I got a more recent version of jupyter which fails with the following error from the messages buffer
I'm running emacs from the
master
branch withnative-comp
andpgtk
.My emacs-jupyter config looks like this
And these are the results from
jupyter --version
in the working and failing casesAlso I could not use
zmq
as emacs just crashes when I try to install it, not even use it (maybenative-comp
related issue).I could try to target another jupyter/ipython/ipykernel version but I'm not very knowledgeable about all the jupyter intricacies so I'd probably need a lot of attempts. Would you have any idea which package I should downgrade? Or maybe you're aware of what can be fixed on the emacs-jupyter side.
The text was updated successfully, but these errors were encountered: