Questions tagged [jupyter-console]

The Jupyter console is a terminal front-end for kernels using the Jupyter protocol. Jupyter console versions 4.0 to 5.0 are currently in use.

The Jupyter console is a terminal front-end for kernels using the Jupyter protocol.


Jupyter Console Versions

Version 4.0.0

First release as a standalone package.

After multiple enhancements **version 4.1.0 was released:

  • setuptools fixes for Windows
  • fix jupyter console --generate-config
  • readline/completion fixes
  • use is_complete messages to determine if input is complete (important for non-Python kernels)
  • fix: 4.0 was looking for jupyter_console_config in IPython config directories, not Jupyter

Version 4.1.1

  • fix for readline history

Version 5.0

Current Jupyter version used by most users.


The console can be installed with:

pip install jupyter-console

And started with:

jupyter console
90 questions
1
vote
0 answers

JupyterLab kernel log to web console

I have created a jupyterlab extension and trying to execute a code in the kernel using requestExecute method. Registering the IOPub callback gives back the kernel output which i wanted it log to the JupyterLab web console extension. execute code…
ikiw
  • 372
  • 1
  • 4
  • 17
1
vote
1 answer

Autocomplete for jupyter notebook and ipython console for classes with "@property"

I want to use autocomplete in ipython and jupyter for the following code with read-only class attributes (using @property): class A(object): def __init__(self): self.__value = 1 @property def value(self): return…
dinya
  • 1,563
  • 1
  • 16
  • 30
1
vote
2 answers

Where is ipython/jupyter config file located inside virtual environment created using `python -m venv myvenv`?

ipython and jupyter-console have different matplotlib backends. Due to this I can't show my plots when using jupyter-console. Both run in virtual environment on Xubuntu 16.04. [edit] Where is ipython/jupyter config file located inside virtual…
kujaw
  • 313
  • 1
  • 3
  • 18
1
vote
0 answers

unable to download nbextensions' javascript and css file

I am trying to install nbextensions to my jupyter notebook. When opening the notebook, I can see the tab for the nbextensions but is is empty. There is a reload button moving but nothing ever shows. I went to command prompt and the following…
1
vote
1 answer

Why does Jupyter notebook stop executing after a line is re-run after an error?

For the Encoding categorical data data section, the first time I ran it, I got an error because I didn't have sklearn installed. After I installed it and re-run, I got In [ * ]. No matter how many times I run it, it's not executing. Basically, after…
saga
  • 736
  • 2
  • 8
  • 20
1
vote
0 answers

Error message saving DataFrame to_csv in Ipython

I'm following Lesson 1 (http://nbviewer.jupyter.org/urls/bitbucket.org/hrojas/learn-pandas/raw/master/lessons/01%20-%20Lesson.ipynb) on using Pandas with the Jupyter console from Anaconda. I'm trying to export a DataFrame (dict) to a CSV file, here…
Louis Flores
  • 11
  • 1
  • 5
0
votes
1 answer

Jupyter: magic %qtconsole console appears but does not work

Set up python on a new machine (mac air m2) and cannot for the life of my get my qtconsole back. Starting a jupyter notebook and running the magic in the cell causes the qt window to pop up, but no prompt is ever available (pictured below). This…
0
votes
1 answer

How to connect your CSV file to Jupyter Notebook?

So I have a CSV file from google analytics called 'data-export' and I'm trying to use Python in Jupyter Notebook to basically open the file and then later, create charts for furhter analysis. import pandas as pd getCSV =…
0
votes
0 answers

how to load kernel config files when using jupyter console?

In IPython you can create a profile file foo and load it by running ipython --profile=foo. Is it possible to do the same with jupyter console? I am not interested in loading a jupyter console config file but a kernel specific config file, i.e. I am…
Barzi2001
  • 989
  • 8
  • 24
0
votes
1 answer

Is it possible to display images in IPython (or Jupyter) console?

I have just discovered that there are tools that allow embedding images into terminals, like these ones. I am wondering if there is a IPython (or, more generally jupyter console) builtin function that allows to do the same. That would be handy for…
Barzi2001
  • 989
  • 8
  • 24
0
votes
0 answers

Run Jupyter labs file with javascript code

I have files that exist in the jupyter-labs notebook. the user edits code in the notebook and moves onto another page in the UI, the lab session is display: none but still loaded on the page. I need to run the .ipynb file from a different page…
0
votes
0 answers

Converting the first column from wavelength (nm) & (mm) to wave number (cm^-1) for multiple .txt files

I am trying to convert the first column of multiple (I mean like a lot!) of .txt files from wavelength (some in nanometers and some in micrometers) to wavenumber (cm^-1). Then, finally, I want to convert all the .txt files into .csv files. Currently…
0
votes
0 answers

How to run Jupyter Notebook in multiple CPU cores?

I have Q kernel in jupyter notebook. But the jupyter notebook run in single CPU core only. My system has 128 cores but the jupyter notebook utilize the single core only. Is there any way to utilize the multiple cores of my CPU for running the…
0
votes
0 answers

JupyterHub : Behavior during julia package install

After installing the IJulia kernel for all users, as an administrator when adding a julia package, it is available for existing and new users. Same behavior when a user performs the same task. is this the normal behavior? Os Ubuntu 22.04.1…
0
votes
0 answers

How to configure Jupyter console ports

I'm trying to run jupyter console in a Linux docker image, and connect to from the host OS (Windows). To do this, I must specify the used ports so that docker publishes them. I cannot use --network host, since my host OS is Windows (docs). So I must…
NikoNyrh
  • 3,578
  • 2
  • 18
  • 32