April 2018
Beginner
238 pages
7h 13m
English
Jupyter, as a project, grew out of Python, so it is somewhat dependent on which version of Python you have installed. For Python 2 installations, the command line steps to install Jupyter are:
python -m pip install --upgrade pippython -m pip install jupyter
This assumes you have pip installed. The pip system is a package management system written in Python. To install pip on your Windows machine, execute the following line:
python get-pip.py
As you can see, this is all Python (this code calls Python to execute a standard Python script).