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
0
votes
1 answer

ConsoleWidget.paging option in qtconsole

What does ConsoleWidget.paging option do in Jupyter Qtconsole configuration? The documentation doesn't explain very well what this config option is for.
Kapil Sharma
  • 1,412
  • 1
  • 15
  • 19
0
votes
0 answers

ipython qtconsole - play with figure then show again

I'm using the ipython qtconsole that comes with the anaconda installation. I guess it has the %inline magic on, so everytime I do something like pylab.plot(x, y) It draws the plot right away, and all is good. The problem starts when I want to…
nivniv
  • 3,421
  • 5
  • 33
  • 40
0
votes
0 answers

QGeoPositionInfo not working in QCoreApplication

I'm trying to get the position updates in QCoreApplication, Following is the code i'm trying but i'm getting error as QObject::connect: Cannot connect (null)::positionUpdated(QGeoPositionInfo) to…
K Vinay
  • 13
  • 6
0
votes
1 answer

ipython qtconsole on Windows printing error with no apparent side-effects

When I launch ipython qtconsole on Windows (by punching ipython qtconsole into a CMD window), the following error gets printed quite frequently to CMD: QTextCursor::setPosition: Position '4022' out of range Everything in the ipython qtconsole is…
aensm
  • 3,325
  • 9
  • 34
  • 44
0
votes
1 answer

Plots Frame (including axes) blackened in Qtconsole

When I launch qtconsole with the --colors=linux option and plot something the frame of the plot is blackened so I cannot see the axes because the qtconsole background is also black. I used to launch this before without problem but have this problem…
user1350191
  • 311
  • 1
  • 3
  • 9
0
votes
0 answers

Display in Anaconda iPython console messed up

I use Anaconda 1.9.1 python QT console (python 2.7.6). I just installed in on a new desktop and noticed that the font displayed in the console are in very low resolution. In other words, when I type in the console, the font edges are not "round"…
user3438258
  • 237
  • 1
  • 3
  • 9
0
votes
2 answers

Can I run multiple Ipython qt console in the same time?

This should be extremely simple to people who know this, but I am not one of them. I searched a lot about multi-processing, but it makes me even more confused... I need to process about 160 data files independently. I have some function to deal with…
user3576212
  • 3,255
  • 9
  • 25
  • 33
0
votes
1 answer

ipython kernel with remote display

I use an ipython kernel on a remote machine via: user@remote_machine$ ipython kernel [IPKernelApp] To connect another client to this kernel, use: [IPKernelApp] --existing kernel-24970.json and then through manual ssh tunneling (see here) connect a…
farmir
  • 1,259
  • 1
  • 10
  • 14
0
votes
0 answers

How to change IPython QTConsole font on Linux

I have been using ipython qtconsole on Win7 and recently I started using RHEL 6.x desktop. When I launch qtconsole ($ ipython qtconsole on bash prompt), the qt window I get has weird font, feel pointy, uneven, sort of like very old raster blocky…
Zee Kay
  • 73
  • 1
  • 5
0
votes
1 answer

Launching IPython qtconsole from command line (after installing all dependencies)

I am a bit of a newbie to the command line. I used to have IPython (with all dependencies configured) on my last MacBook, such that I could click on an icon from the dash to launch iPython qtconsole (outside of terminal shell). Now, on my new…
Jacob Irwin
  • 153
  • 1
  • 13
0
votes
1 answer

IPython qtconsole ignores PromptManager change

I edited ipython_qtconsole_config.py to include a timestamp: import datetime c = get_config() c.PromptManager.in_template = '%s In [\\#]: ' % datetime.datetime.now().strftime("%H:%M:%S") When I type config PromptManager in the shell I see that my…
chalpert
  • 252
  • 1
  • 8
0
votes
1 answer

Ipython and Curses on Windows

I have been trying all sorts of sourceforge projects that try to port GNU functionality to Windows, with the goal to create a very GNU aware Ipython profile providing the best terminal environment I know how (on Windows that is). How close is…
user2097818
  • 1,821
  • 3
  • 16
  • 34
0
votes
2 answers

Ipython QtConsole %edit

When using the magic function %edit from QtConsole with IPython, the call does not block, and does not execute the saved code. It does however save a temporary file... I think this is intended behavior due to GUI editors and uncertainty, and…
user2097818
  • 1,821
  • 3
  • 16
  • 34
0
votes
1 answer

QtConsole Development

Is QtConsole developed by the ipython team? I always assumed it was a nice little widget provided from Qt, implemented by iPy. If Qt merely provides a base widget, and all the terminal magic is part of the iPy effort, that changes things. Like…
user2097818
  • 1,821
  • 3
  • 16
  • 34
0
votes
3 answers

Python Qtconsole: QApp = QCoreApplication.instance() returns None on Linux and a valid QApplication on Windows

I have software which has a GUI interface and a command line interface. What it should do is detect if it is being run in a qtconsole. If it is, it will not create a new QApplication and show the GUI in a non-blocking manner. After the script…
Erotemic
  • 4,806
  • 4
  • 39
  • 80
1 2 3 4 5 6
7