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
0
votes
0 answers

How to get Jupyter Lab to start fresh with no open kernels?

I've been using Jupyter Lab and everytime I open it, it has all of my notebooks from previous session open in Tabs and as open Kernels. I want to open my Jupyter with a fresh window that doesn't have anything I was working on previously. How can I…
O.rka
  • 29,847
  • 68
  • 194
  • 309
0
votes
0 answers

How can I select a kernel automatically in JupyterLab?

Every time I start jupyter-lab, it asks me to select a kernel and that's a problem. I would like to set or select a default kernel automatically. How can I do that? I am using JupyterLab 3.4 on Windows.
Kaptan Singh
  • 221
  • 1
  • 3
  • 11
0
votes
0 answers

Prevent jupyter console from reading code from jupyter notebook

When on jupyter console and I hit the up arrow key, I'd like to go to the previously run line of code on that console. However it will read a previously run cell from a jupyter notebook instead. Is there a way to prevent this from happening?
pyCthon
  • 11,746
  • 20
  • 73
  • 135
0
votes
2 answers

Jupyterlab - find and replace globally ( all files and in all directories )

Is there any way to find and replace text string automatically in all folder's files? similar to what we get in sublime text, VS code etc
0
votes
0 answers

Is there a way to start a new Jupyter Notebook on an existing Jupyter server programmatically?

Use case: I'd like to automatically schedule the execution of certain notebooks weekly. These are notebooks that take a long time to run, and I'd like to be able to continue running if it errors from when it left off, after changing the cause of the…
0
votes
2 answers

How to add seaborn library in jupyter lite static build

I have created the static build of jupyter lite while running seaborn library example code in jupyter lite tool i am getting this error : seaborn module not found.
0
votes
1 answer

jupyter-console "RuntimeWarning: coroutine 'ZMQSocketChannel.msg_ready' was never awaited"

By running jupyter-console any press of Enter button show this error: In [1]: /home/player1/.pyenv/versions/3.7.9/lib/python3.7/site-packages/jupyter_console/ptshell.py:852: RuntimeWarning: coroutine 'ZMQSocketChannel.msg_ready' was never awaited …
0
votes
1 answer

JupyterLab: How attach an python call back function to a button created using Custom Widget?

When, I created a form using the interactive class It's easy to provide a python call-back function, as shown in the example, My_CallBack_function, to a click event. from ipywidgets import interactive, widgets slow =…
jax
  • 3,927
  • 7
  • 41
  • 70
0
votes
1 answer

Import a .mdb file into Python

I want to import a .mdb file into Python (I'm using Jupyter). My file name is PIF.mdb and i want a table called ValuesXYZ. Do anyone know what code works for this? I teste a lot of codes but they doesn't worked. So grateful, Henrique.
0
votes
1 answer

Jupyter keeps producing a 500 error no matter what (new and existing notebooks)

I am running into a 500: Internal Server Error when launching Jupyter, and trying to open or create a notebook. I checked multiple threads here, but nothing worked. I also tried installing, reinstalling, installing from within PyCharm, and from the…
0
votes
1 answer

Jupyter notebook not loading through anaconda promot or cmd

installed the latest anaconda, and this is the error. please help. I have added anaconda to the path. (base) C:\Users\Sagar Singh>jupyter notebook C:\ProgramData\Anaconda3\lib\site-packages\setuptools\distutils_patch.py:25: UserWarning: Distutils…
0
votes
1 answer

Jupyter cells have no ouput

new to python. My code is using JSON to look at js dictionary online. I can execute simple print statements from inside of the dictionary I have made, but if I try to print from within a for-loop or a function the cell has no output. It also…
0
votes
1 answer

Change octave executable to jupyter kernel in emacs octave-mode

How do I change the octave-mode to use the command jupyter kernel --kernel octave as the default octave shell? Edit: Here's a list of things I tried (adding them here as suggested in the comments): Changed the variable inferior-octave-program…
Nidish Narayanaa
  • 338
  • 3
  • 12
0
votes
1 answer

Rendering content inside an iframe is not working in a Jupyter Hub Notebook

I have a webserver which is running locally. When I do a wget in my notebook with the localhost:portNumber url. It seems to work fine downloading the html file. But when I try to render it in iframe. I am getting blank data as shown in the below…
surya
  • 171
  • 2
  • 12
0
votes
1 answer

how to load entire dir from github in jupyter and run all .py files inside it?

I have a github repo that i opened in jupyter lab. The main file .py needs other files, it gives me error when i run it in jupyter cell. # %load ML-SpeakerDiarization/speaker/demo/demo_diarization.py from speaker.model.speaker_diarization import…
ERJAN
  • 23,696
  • 23
  • 72
  • 146