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

Opening Jupyter Notebook in a separate window

Jupyter notebooks, used with or without anaconda opens up in a browser window, now how do I change this to a spearate window, like whenever I open jupyter, it should be opened in a separate, new browser window. If there is a way, it'd be super…
3
votes
1 answer

debug magic function in ipython console

I have a file called foo.py. In that file I have a bunch of functions and I would like to debug one of them, called foo.bar by setting a breakpoint but not hardcoding it using set_trace. I am working in an IPython console and I know there is a…
Alex
  • 1,281
  • 1
  • 13
  • 26
3
votes
1 answer

Jupyter Notebook autocomplete dialog in Jupyter Lab?

In Jupyter Notebook if you type 'p' you get this handy-dandy dialog: Is there a way to access this or a similar feature in Jupyter Lab?
M.R.
  • 1,053
  • 2
  • 13
  • 30
3
votes
1 answer

How to activate a conda virtualenv in a Jupyter Notebook terminal?

In a Jupyter Notebook terminal (used from a browser) I created a new conda environment. But when I tried to activate it using: source activate But I got following error: /bin/sh: 5: source: not found I also tried: activate…
Marcin Możejko
  • 39,542
  • 10
  • 109
  • 120
3
votes
1 answer

Jypyter QTconsole not returning error messages

Am i missing something? I did get newest Winpython (WinPython-64bit-3.4.4.4Qt5) package and when i'm trying to run code with %run code in QTconsole everything goes well but error messages are not printing to console. Am i using %run all wrong or is…
Wenlin88
  • 61
  • 6
3
votes
0 answers

Embedding Jupyter in Qt Application

I have a Qt application with an embedded Jupyter QtConsole. This is the code that I use to create the Jupyter console: from qtconsole.rich_jupyter_widget import RichJupyterWidget from qtconsole.inprocess import QtInProcessKernelManager class…
2
votes
2 answers

Nbgrader with Littlest JupyterHub releases assignment to course directory but not to /srv/nbgrader/exchange

Operating system nbgrader --version: 0.6.1 jupyterhub --version (if used with JupyterHub): 1.0.0 (Using littlest Jupterhub) jupyter notebook --version jupyter core : 4.6.3 jupyter-notebook : 6.0.3 qtconsole : 4.7.2 ipython :…
2
votes
0 answers

Problem executing commands from the cdo (climate data operators) package in jupyter notebook / terminal

My aim is to run a simple command from the cdo package (timmean) on a netcdf file. I have successfully installed the package but cannot seem to run commands. In jupyter terminal When I navigate to the relevant directory and run the command I…
2
votes
0 answers

jupyterlab/hub-extension@0.12.0" is not compatible with the current JupyterLab

I want to install the littlest jupyterhub via .gitlab-ci.yml in a subdomain. Here is my .gitlab-ci.yml. I get this error message. I need a little help to fix this error message. I know the littlest jupyterhub is still in beta. Is it possible to add…
Aaron
  • 769
  • 1
  • 14
  • 25
2
votes
0 answers

How to send commands to ipython console session

How do IDEs like Spyder send commands to their interactive ipython shell (such as runfile() when you click the run button)? Is there a way to open an ipython console and send commands to the kernel from outside the console (e.g. from a cmd or python…
binaryfunt
  • 6,401
  • 5
  • 37
  • 59
2
votes
0 answers

jupyter console and ipython

In my conda environment, I installed both jupyter and ipython. The result for conda list jupyter and conda list ipython are as follows: jupyter_client 5.1.0 py35_0 defaults jupyter_console 5.2.0 …
doraemon
  • 2,296
  • 1
  • 17
  • 36
2
votes
2 answers

Cant load data onto Jupyter docker

This is probably a obvious question, but i cant find a direct answer anywhere. I installed, docker and docker machine, no problems so far. After that, i pulled this imaged based on jupyter/datascience-notebook docker. Supposedly, the only…
2
votes
0 answers

Jupyter path error when on different server with mapped home directory

I work on two servers, serverA and serverB. On both of them, my home directory is mapped to the same location. Other than the home directory, the servers have independent file systems. This includes system directories and application directories.…
abalter
  • 9,663
  • 17
  • 90
  • 145
2
votes
2 answers

How to start jupyter notebook in linux sub system of windows 10?

The new update win10 provides a linux(Ubuntu?) sub system in shell. It is powerful, and faster than virtual OS. It runs everything well except jupyter notebook. I've start the service in bash shell of win 10 . The problem is when I enter into by…
JerryWind
  • 29
  • 2
  • 6
2
votes
1 answer

Jupyterhub terminal path variable

When I open a terminal on JupyterHub and try to run commands that I've placed in the machine's path, it says "command not found." The default PATH variable on Jupyterhub terminal seems to be /sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin and I'm…