diff --git a/journal/JupyterLabWithPowerShell.md b/journal/JupyterLabWithPowerShell.md new file mode 100644 index 0000000000000000000000000000000000000000..247c16e834d43910dfd18e46a597b0bcd850cb23 --- /dev/null +++ b/journal/JupyterLabWithPowerShell.md @@ -0,0 +1,43 @@ +# **JupyterLab with PowerShell** + +## Installation python + +On choisit l'installaltion [miniconda](https://docs.conda.io/en/latest/miniconda.html) + +## Installation JupyterLab + +jupyterLab est la seconde génération de notebook + +``` bash +conda install -c conda-forge jupyterlab +``` + +## Installation PowerShell + +A ce jour conda ne contient pas le package on passe par pip. +Tout d'abord on véridie l'environnement: +``` bash +which python +which pip +``` +On doit être ds l'envirronement conda + +De façon standard ressmeble sous linux à +```bash +/home/$login/miniconda/bin/python +/home/$login/miniconda/bin/pip +``` + +On installe PowerShell: +```Bash +pip install powershell_kernel +python -m powershell_kernel.install +``` +## Vérification +On lance JupyterLab +``` shell +jupyter lab +``` +on doit voir : + +![JupyterLab with powerShell](/tmp/JupyterLabWithPowerShell.png)