Sur Debian 10 Buster, installer jupyter avec les dépôts
sudo pip3 install jupyter
sudo python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console notebook qtconsole nbconvert nbformat sudo pip3 install jupyter
sudo apt install python3-ipykernel
extrait .. Dépaquetage de python3-ipykernel (4.9.0-1) ... Paramétrage de python3-prompt-toolkit (1.0.15-1) ... Paramétrage de python3-tornado (5.1.1-4) ... Paramétrage de python3-ipython-genutils (0.2.0-1) ... Paramétrage de python3-zmq (17.1.2-2) ... Paramétrage de python3-pickleshare (0.7.5-1) ... Paramétrage de python3-traitlets (4.3.2-1) ... Paramétrage de python3-dateutil (2.7.3-3) ... Paramétrage de python3-simplegeneric (0.8.1-2) ... Paramétrage de python3-jupyter-core (4.4.0-2) ... Paramétrage de python3-ipython (5.8.0-1) ... Paramétrage de python3-jupyter-client (5.2.3-1) ... Paramétrage de python3-ipykernel (4.9.0-1) ...
jupyter notebook
ouvre un onglet dans votre navigateur Web, avec un navigateur de fichier ouvert sur votre home:
Le notebook à coller, décompressé, dans le dossier Jupyter de votre home: hello.ipynb.zip
Le fichier *.ipynb converti en python
#!/usr/bin/env python # coding: utf-8 # # Hello World # Affichage de "Bonjour La Labomedia" # # Maj + Entrée ou clic sur Run # In[1]: print('Bonjour La Labomedia') # In[2]: for i in range(0, 2): print("Hi!") # In[4]: for i in range(5, 10): print("Hi!"),
Après Exécution sur chaque bloc
En dessous de chaque bloc, est affiché la sortie terminal du bloc.