• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H28-Aug-2020-3529

docs/H03-May-2022-1,027604

jupyter_console/H28-Aug-2020-1,5821,177

jupyter_console.egg-info/H03-May-2022-2221

scripts/H28-Aug-2020-63

.bumpversion.cfgH A D28-Aug-2020472 2016

.gitignoreH A D01-Oct-2018188 1919

.mailmapH A D24-May-201510.6 KiB150149

.travis.ymlH A D27-Aug-2020662 2120

CONTRIBUTING.mdH A D24-May-2015124 42

COPYING.mdH A D24-May-20152.8 KiB6145

MANIFEST.inH A D27-Aug-2020494 3125

PKG-INFOH A D28-Aug-2020725 2221

README.mdH A D27-Aug-20201.5 KiB5030

RELEASING.mdH A D26-Aug-2020864 3727

mypy.iniH A D26-Aug-202082 54

pyproject.tomlH A D27-Aug-202098 43

pytest.iniH A D26-Aug-202034 32

readthedocs.ymlH A D19-Jan-2017140 109

setup.cfgH A D28-Aug-2020107 117

setup.pyH A D27-Aug-20203.6 KiB12783

README.md

1# Jupyter Console
2[![Build Status](https://travis-ci.org/jupyter/jupyter_console.svg?branch=master)](https://travis-ci.org/jupyter/jupyter_console)
3[![Documentation Status](http://readthedocs.org/projects/jupyter-console/badge/?version=latest)](https://jupyter-console.readthedocs.io/en/latest/?badge=latest)
4
5A terminal-based console frontend for Jupyter kernels.
6This code is based on the single-process IPython terminal.
7
8Install with pip:
9
10    pip install jupyter-console
11
12Install with conda:
13
14    conda install -c conda-forge jupyter_console
15
16Start:
17
18    jupyter console
19
20Help:
21
22    jupyter console -h
23
24Jupyter Console allows for console-based interaction with non-python
25Jupyter kernels such as IJulia, IRKernel.
26
27To start the console with a particular kernel, ask for it by name::
28
29    jupyter console --kernel=julia-0.4
30
31A list of available kernels can be seen with::
32
33    jupyter kernelspec list
34
35
36### Release build:
37
38```bash
39$ pip install pep517
40$ python -m pep517.build .
41```
42
43
44## Resources
45- [Project Jupyter website](https://jupyter.org)
46- [Documentation for Jupyter Console](https://jupyter-console.readthedocs.io/en/latest/) [[PDF](https://media.readthedocs.org/pdf/jupyter-console/latest/jupyter-notebook.pdf)]
47- [Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html) [[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
48- [Issues](https://github.com/jupyter/jupyter_console/issues)
49- [Technical support - Jupyter Google Group](https://groups.google.com/forum/#!forum/jupyter)
50