-
-
Notifications
You must be signed in to change notification settings - Fork 397
Closed
Labels
Description
WHen trying to open a qtconsole in jupyter notebook
in this line
ipykernel/ipykernel/connect.py
Line 109 in 51a613d
| cmd = ";".join(["from IPython.qt.console import qtconsoleapp", "qtconsoleapp.main()"]) |
the command
cmd = ";".join(["from IPython.qt.console import qtconsoleapp", "qtconsoleapp.main()"])
is spawned. However on my machine this results in the error in the header. For me to make it work I have to change that to
cmd = ";".join(["from qtconsole import qtconsoleapp", "qtconsoleapp.main()"])
then everything is working the way it should. It seems this is the more uptodate way to spawn an jupyter-console