Questions tagged [qtconsole]

QTConsole is a very lightweight widget that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and much more.

QTConsole is a very lightweight widget that largely feels like a terminal, but provides a number of enhancements only possible in a GUI, such as inline figures, proper multiline editing with syntax highlighting, graphical calltips, and much more.

More info: A Qt Console for IPython

105 questions
1
vote
1 answer

Missing Spyder dependecies qtconsole

After the latest Spyder update using conda update conda I have started getting an error message in a small window that pops up and says You have missing dependencies! # Mandatory: qtconsole >=5.0.1 : 4.7.7 (NOK) Please install them to avoid this…
1
vote
1 answer

Error qtconsole after updating Spyder to 4.0

I have a problem with recent Spider's update: You have missing dependencies, qt console >= 4.6.0: 4.5.2 (NOK). This error appears every time I running program and during using i have problems with inputs. I tried reinstall spyder, update spyder,…
wnq
  • 25
  • 6
1
vote
1 answer

embedded qtconsole in pyqt5 aplication does not works as expected

I have a rather large project with an embedded Jupyter QtConsole 4.4.2. For more details see: https://github.com/3fon3fonov/trifon Now, while some of the processes are running/finished I am trying to send some text to the Qtconsole and use it as an…
1
vote
1 answer

I think jupyter-qtconsole is broken because I am running os x 10.10.5. How to fix without update?

Quick note: I had trouble with formulating my question. I do not know very much about jupyter-qtconsole, so I am not very sure what issue I am actually facing. I am on mac book with os x 10.10.5 running pyenv virtual environments. A typical fresh…
Kyle Swanson
  • 1,308
  • 1
  • 12
  • 20
1
vote
0 answers

Open qtconsole automatically when starting single jupyter notebook?

Looking to have a qtconsole open automatically when I start an individual Jupyter notebook. I usually will Anaconda prompt with 'jupyter notebook', click to start a notebook, then open a second Anaconda prompt window and type 'jupyter qtconsole…
dmasceri
  • 11
  • 1
1
vote
1 answer

Specify ipython profile qtconsole

Any guesses on how to specify a specific ipython config from qtconsole? Without qtconsole: ipython --profile=my_profile_name Where my_profile_name is a profile name under your global ipython directory, for ipython kernel options. This lets you…
Turtles Are Cute
  • 3,200
  • 6
  • 30
  • 38
1
vote
1 answer

In the IPython terminal, help(object) brings up a colored man page in a "less" window. Can help() also have interaction in jupyter qtconsole/notebook?

I was wondering if more interactive help(object) pages can be generated in qtconsole or notebook, like the ipython terminal console and the builtin python command-line tool. For example, some temporary popup encompassing the Qt window/browser tab…
Luke Davis
  • 2,548
  • 2
  • 21
  • 43
1
vote
1 answer

how to save codes history in QT Console python?

I just switched from R to Python, and find Jupyter Qt Console is really handy and helpful for running codes line by line. But I have a question: how to save the codes already input? I mean just like Rstudio, the top left part is the code editor,…
jijijude
  • 23
  • 4
1
vote
1 answer

Launch external jupyter qtconsole and run a script with args

I have a script which takes one argument to run. Usually, I can run it from terminal using the standard python console with the following command: $python3 myscript.py arg1 & But I want to execute the script in jupyter qtconsole. It is possible to…
Victor Mayrink
  • 1,064
  • 1
  • 13
  • 24
1
vote
0 answers

no command prompt in jupyter qtconsole

After starting jupyter qtconsole I get only an empty window with the usual menu on top but no command prompt. When I hit enter I get three dots (like multilinecommand) but again no prompt -> nothing happens if I type any text. A few weeks ago the…
1
vote
0 answers

defaulting output behavior to print in ipython console

What setting in spyder should I change such that when I submit this code, I get identical looking output for both print call ? import pandas as pd df = pd.Dataframe({'a':[1,2,3], 'b':[2,3,4]}) df.shape print df.shape I suspect that df.shape isn't…
Alex Fortin
  • 2,105
  • 1
  • 18
  • 27
1
vote
1 answer

Pyinstaller produced executable of "RichJupyterWidget With QT4 backend" produces error

The following simple example.py code shows an ipython console with qt4 backend when run. import sip sip.setapi(u'QDate', 2) sip.setapi(u'QDateTime', 2) sip.setapi(u'QString', 2) sip.setapi(u'QTextStream', 2) …
1
vote
1 answer

Setting default configuration for Jupyter QtConsole

I have Jupyter QtConsole installed in Ubuntu 16.04. How can I set default configuration like font family, size and initial imports?
Amani
  • 16,245
  • 29
  • 103
  • 153
1
vote
2 answers

iPython/jupyter qtconsole fails to start in anaconda 2.4.0

After upgrading Anaconda3 (32-bit) from version 2.3.0 to 2.4.0 (by reinstalling Anaconda) on my Windows 7 64-bit machine, the iPython/jupyter qtconsole fails to start: when executing jupyter-qtconsole.exe or jupyter-qtconsole-script.py, the…
Puggie
  • 3,867
  • 2
  • 35
  • 39
1
vote
1 answer

Plots won't show up in qtconsole

I have read tons of questions on this, but I am still baffled. I'm running Anaconda in Scientific Linux. I launche a console a type ipython qtconsole. My script.py is something like import matplotlib.pyplot as…
Fequish
  • 705
  • 6
  • 17