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

Which dunder gets called in jupyter when I run an object alone in a cell

Let's say I have some class_object_instance of some_really_complex_object in my jupyter notebook. Eg: In [4]: import some_wild_proprietary_code as some_crazy_import class_object_instance = some_crazy_import.some_really_complex_object() Then…
jason m
  • 6,519
  • 20
  • 69
  • 122
0
votes
1 answer

Jupyter Notebook gives Index Error while executing Pandas read_csv and read_excel (the same methods work fine in Jupyter-console/ipython)

I am trying to read a csv file using pandas read_csv in a Jupyter notebook. I used the same function to read different csv files and it was working fine. However, today the function keeps giving me index errors (for both csv and xlsx files). Tried…
0
votes
1 answer

Jupyter Notebook theme changed my version of python

I just changed my theme in jupyter notebook. However even though it's showing python 3. I input() does not work. Only raw_input(). Has anyone come across this before? It does say Python 3 in the top right. I changed the theme back and still the same…
user7313804
0
votes
2 answers

check which conda env jupyter console is using

I have a conda environment and I would like to run a jupyter console within that environment. I do the usual source activate myenv and then jupyter console. The source activate myenv works since which python points to the right path. However, it…
Alex
  • 1,281
  • 1
  • 13
  • 26
0
votes
1 answer

Launching juptyer notebook on paperspace?

I have launched paperspace successfully multiple times before but after I accidentally logged out, it started to ask me for an access token, I entered the token that the virtual machine gave me but then it said that it's invalid so I restarted my…
UWGOOSE
  • 833
  • 3
  • 11
  • 20
0
votes
1 answer

Query about Jupyter Notebook

Hi, I was making an attempt to learn python using Jupyter Notebook. But after one or two practices I found that, "1" which is circled appears out of no where. It makes me wonder how it came and what does it signifies. Please Help!
0
votes
0 answers

Error connecting jupyter notebook 5.0 in root environment

I've been using jupyter notebook in my root environment and a few other environment for several months. Upgraded to jupyter notebook 5 last week and it worked well until yesterday. Yesterday - computer froze. After restarting, jupyter notebook gives…
MarkhamP
  • 1
  • 1
0
votes
0 answers

jupyter console commands from bash script

I've been using jupyter notebooks for a little while and am trying to learn more about the jupyter console and bash scripting. I can't figure out how to get the most basic command to run using a bash script though: #!/bin/bash clear echo "Testing…
Austin
  • 6,921
  • 12
  • 73
  • 138
0
votes
0 answers

Status of Jupyter or IPython interactive terminal

I work on a linux server with no http access. Purely command line. I've decided I'd like to start using ipython, however it seems to have been superseded by jupyter. I've tried googling for ipython tutorials, and just about everything is about…
abalter
  • 9,663
  • 17
  • 90
  • 145
0
votes
1 answer

Enter edit mode when selecting new or next cell

When creating a new cell or moving to a cell using keyboard commands, the cell is selected. However it is necessary to mouse click in it in order to start editing it. Is there a way to automatically enter edit mode?
yahan
  • 71
  • 7
0
votes
1 answer

increase number of columns in window using jupyter qtconsole in python

I have a QtConsole running. Whenever I output a matrix (for example) that has many columns, QtConsole wraps the matrix to the next line. However, the break point is only halfway through my window.. lots of wasted blank space. How can I make…
Alex
  • 19,533
  • 37
  • 126
  • 195
0
votes
1 answer

Can I make Jupyter QtConsole use specific font?

I like the DejaVu fonts and want to use DejaVu Sans Mono as my Jupyter qtconsole's font. I use the following command: /opt/local/anaconda/bin/jupyter qtconsole \ --JupyterWidget.font_family="DejaVu" \ --JupyterWidget.font_size=11 \ …
Yantao Xie
  • 12,300
  • 15
  • 49
  • 79
0
votes
0 answers

How to separate and run the code part of an Ipython notebook?

I have an IPython file. I want to take all the code-parts of the Ipython file and run it separately to display all plots and figures.(All the code-part is refering to the fact that a ipython file has both markdown and code snippets and I want only…
0
votes
2 answers

Can Jupyter Console be used with Google Cloud Datalab?

Can Jupyter Console be used with Google Cloud Datalab as a replacement for the javascript frontend?
Dominykas Mostauskis
  • 7,797
  • 3
  • 48
  • 67
-1
votes
1 answer

Notebook and terminal launch wrong python version

I don't know why but after half day using my kernel 'geomatic' in jupyterhub, something crash. My notebook doesn't work anymore... After some researches, I understand that issue comes from python version used by notebook or console. It's a bad one…
Tim C.
  • 167
  • 1
  • 1
  • 8
1 2 3 4 5
6