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

102 questions
1
vote
1 answer

In Ipython Qt Console sp.info doesn't print inside the console

I have installed IPython 1.1.0, in Ubuntu 12.04 from the source. Similarly I have installed Numpy-1.8.0, Scipy-0.13.1, Matplotlib-1.3.1 from the source. When I use the Ipython Qt COnsole the command sp.info(optimize.fmin) doesn't print the output…
1
vote
2 answers

LaTeX printing in ipython qtconsole when running external file

I solved an analytic problem using sympy and saved everything in a .py file. When I run the code (which includes init_printing()) with ipython filename.py I get nice unicode output whenever I print within the file with pprint. So far so good. When I…
1
vote
2 answers

PythonXY, IPython Qt Console, matplotlib, draw something not in inline mode

I'm new to PythonXY and Matplotlib. I installed PythonXY (v2.7.3.1) in default full mode. I use the "IPython Qt Console" application. I draw something using matplotlib.pyplot (imported as plt). For example. When plt.plot([1,3,2,4]), the figure…
Babeler
  • 45
  • 1
  • 6
0
votes
0 answers

How do I specify startup code for QtKernelManager subprocess kernels to pass data for interprocess communication?

The repository for qtconsole, a package that allows embedding Jupyter notebook-like interfaces in Qt apps, provides two examples of usage. With the inprocess_qtconsole.py example, everything runs in the same process, and you can access the kernel…
ramcdougal
  • 2,135
  • 1
  • 11
  • 20
0
votes
0 answers

Error starting QtConsole: ImportError: DLL load failed while importing message: The specified procedure could not be found

I setup my Python venv installing all packages including jupyter, qtconsole, pyqt5, pyside2, ipython etc. in order to be able to use the command jupyter qtconsole. Yet, when doing so, no matter if I am in my global environment, or my venv, it throws…
Andreas L.
  • 850
  • 3
  • 20
0
votes
0 answers

Jupyter Qtconsole Integrated to Geany

I was seting up my python from anaconda environment to Geany. When i finished, i thought if there is a way to integrate the Qtconsole from Jupyter to Geany due to is more powerful than default terminal of my system (Linux). Even if it's not possible…
0
votes
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…
0
votes
0 answers

PyQt5 app is blocking/hanging when run inside Jupyter QtConsole

I run Python/PyQt/Jupyter/IPython on Windows 10 and I'm trying to migrate from: Old Setup New Setup ====================================================== Python 3.6.3 (32 bit) Python 3.8.6 (64 bit) PyQt4 …
subnivean
  • 959
  • 10
  • 14
0
votes
2 answers

Using describe() method to exclude a column

I am new to using python with data sets and am trying to exclude a column ("id") from being shown in the output. Wondering how to go about this using the describe() and exclude functions.
cam.mc
  • 3
  • 2
0
votes
0 answers

Hide/Filter methods and properties from Jupyter qtconsole (inprocess)

I am using Jupyter's qtconsole package to allow users of my application to control objects and get properties of objects through the console. Because of this, I am using the QtConsoleInprocessKernel. The issue I have is that all of the methods and…
0
votes
0 answers

Relink `/usr/lib/x86_64-linux-gnu/libQtCore.so.4' with `/lib/x86_64-linux-gnu/librt.so.1' for IFUNC symbol `clock_gettime'

** UPDATE ** To resolve the original issue described in the original question below, I added this line to my .bashrc and .bash_profile files: export PYTHONPATH="/usr/lib/python3/dist-packages:$PYTHONPATH" Then, the package PySide can be imported…
Andreas L.
  • 850
  • 3
  • 20
0
votes
0 answers

qt console repeatedly displaying 'Error starting...'

I am running python 3.7.5 and have installed qtconsole via pip. I use the following command to run the qtconsole from the command line: >>jupyter qtconsole The qtconsole starts correctly but often displays the following error message, for example,…
mr_js
  • 771
  • 6
  • 25
0
votes
0 answers

Calling %history from python runtime outside of qtconsole

My desired outcome is to get, similar to what is possible in qtconsole, this type of output: %hist import pandas as pd pd.DataFrame() But for code run in the python runtime. I have explored inspect, pdb and traceback but they do not give the clean…
jason m
  • 5,494
  • 17
  • 58
  • 114
0
votes
1 answer

Where does Jupyter QtConsole save its past commands

If I close an instance of Jupyter QtConsole, and open a new instance, hit the Up key. Then the previous command I last ran is loaded. In which directory is the past command history saved? I've looked through the source on Github but haven't managed…
simonzack
  • 16,188
  • 11
  • 62
  • 100
0
votes
1 answer

Can't install "line_profiler" with pip in Qt Console

When I tried to install "line_profiler" in QTconsole using !pip install line_profiler But it failed as saying, "Failed building wheel for line-profiler". I do not know why this happened. Is there any way to successfully install "line_profiler" in…