Exploring the Jupyter Notebook for Python 3 programming
The Jupyter Notebook is a web-based interactive interface that works like the interactive mode of Python 3. The Jupyter Notebook has 40 programming languages, including Python 3, R, Scala, and Julia. It provides an interactive environment for programming that can have visualizations, rich text, code, and other components, too.
Jupyter is a fork of the IPython project. All the language-agnostic parts of IPython were moved to Jupyter and the Python-related functionality of Jupyter is provided by an IPython kernel. Let's see how we can install Jupyter on Raspberry Pi:
- Run the following commands one by one in Command Prompt:
sudo pip3 uninstall ipykernel
The previous command uninstalls the earlier version of the
ipykernel
utility. - The following commands install all the required libraries:
sudo pip3 install ipykernel==4.8.0 sudo pip3 install jupyter sudo pip3 install prompt-toolkit==2.0.5
These commands will install...