8

I am trying to use the magic %qtconsole from jupyter notebook. I am working on my local connected to a remote server.

WHen typing %qtconsole and shift-enter in a cell of the notebook, nothing happens. No error message, but not qt console either.

Does that have to do with the remote server? Anyone has an idea how to resolve that problem?

Radar
  • 935
  • 3
  • 9
  • 23
  • I had exactly the same problem. And I'm looking for a RStudio server style notebook-console integrated environment in browser. – Leo Jun 14 '18 at 09:08
  • Does `jupyter qtconsole` on the command line work? – maciej Dec 14 '18 at 21:05

1 Answers1

1

You don't say much about your environment, but you may need to install qtconsole. If you are in a conda environment try...

conda install qtconsole

... or in general...

pip install qtconsole
equant
  • 121
  • 1
  • 6
  • I did conda install qtconsole. But no help. Now, mine is remote access to the jupyter server. qtconsole is installed on the remote server. Does that make a difference? – bhomass Aug 10 '19 at 22:30
  • I don't know anything about working with jupyter and remote servers, sorry. – equant Aug 13 '19 at 16:57