{{tag>dev python jupyter}}
====== Jupyter notebook ======
Le nom Jupyter vient de la contraction des 3... ia, **Pyt**hon et **R**. L'extension d'un fichier notebook produit par Jupyter est **.pynb** pour **IPy*... === Installation =====
L'installation de jupyter notebook est détaillée dans le wiki [[dev:python:jupyter-notebook:install| installer jupyter notebook]].
=====
{{tag>software python jupyter jupyterlab notebook install docker todo}}
====== Installer Jupyter via Do... =
Il existe plusieurs images, la version ''scipy-notebook'' inclus des packages populaires de l'écosyst... e Python:
<code bash>
docker pull jupyter/scipy-notebook:python-3.9.6
docker run --rm -p 10000:8888 -e... B=yes -v "${PWD}":/home/jovyan/work jupyter/scipy-notebook:python-3.9.6
</code>
===== Authentification
{{tag>dev python jupyter notebook}}
====== Jupyter Notebook ======
Un notebook est un environnement web interactif proposant un mélange de texte et de code po... ement virtuel:
<code bash>
python -m venv jupyter-notebook
</code>
Activation de l'environnement, mise
ag>dev data jupyter python csv}}
====== Jupyter Notebook: Charger des données au format CSV ======
<... hamster.com/programming/how-to-read-csv-file-into-a-dataframe-using-pandas-library-in-jupyter-notebook/