##// END OF EJS Templates
Update output streams so we can redirect stdout with only stats to a file....
Update output streams so we can redirect stdout with only stats to a file. Previously, input prompts (like username/pwd) were going to stdout, effectively breaking the tool if used as directed in the instructions.

File last commit:

r22594:1798d324
r22673:83f65acb
Show More
index.rst
58 lines | 1.1 KiB | text/x-rst | RstLexer

Installation

This sections will guide you through installing IPython itself, and installing kernels for Jupyter if you wish to work with multiple version of Python, or multiple environments.

Quick install reminder

Here is a quick reminder of the commands needed for installation if you are already familiar with IPython and are just searching to refresh your memory:

Install IPython:

$ pip install ipython

Install and register an IPython kernel with Jupyter:

$ python -m pip install ipykernel

$ python -m ipykernel install [--user] [--name <machine-readable-name>] [--display-name <"User Friendly Name">]

for more help see

$ python -m ipykernel install  --help