Thomas Kluyver

Results 989 comments of Thomas Kluyver
trafficstars

It should be calling `shutil.which('pandoc')` - can you try that?

Looks like a template is trying to use a filter that's not defined. But `json_dumps` has been there for a few releases - it was added in #482. And the...

What version of nbconvert have you got, and how did you install it?

At the command prompt, you've got ntbconvert instead of nbconvert. That may just get you the same error that you saw from in the notebook editor. Unfortunately the pdf conversion...

Sounds like it's getting a non-JSON response back when it expects JSON. You could stick a `print(r.content)` in the code just before it calls `r.json()` to see what data it's...

Make sure you're using an up-to-date version from git - that HTML looks like it might be getting an older version which didn't send the authentication token.

There are two HTML templates for nbconvert. The default is 'full', which constructs an entire page. The 'basic' template constructs HTML with a view to embedding it in an existing...

That line uses `os.kill()` to send a signal to a process. The Python docs [have some pretty big caveats](https://docs.python.org/3/library/os.html#os.kill) about os.kill() on Windows, so I guess we'd need something else,...

How long does running this Python code take: ```python for server in nbmanager.api.NbServer.findall(): print(server.sessions()) ``` That's what the GUI needs to do to find the running notebook servers - it...