Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jupyter: magic %qtconsole doesn't work

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?

like image 586
Radar Avatar asked Jan 09 '17 01:01

Radar


1 Answers

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
like image 191
equant Avatar answered Sep 21 '22 04:09

equant