From 5c595dbc92c26873f22b96a6d459f30a80c72c43 Mon Sep 17 00:00:00 2001 From: coolneng Date: Sun, 23 Oct 2022 11:04:46 +0200 Subject: [PATCH] Replace jupyter with jupyterlab --- python-data-science.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-data-science.nix b/python-data-science.nix index 0472ad7..8efabb6 100644 --- a/python-data-science.nix +++ b/python-data-science.nix @@ -5,7 +5,7 @@ with pkgs; mkShell { buildInputs = [ python3 - python3Packages.jupyter + python3Packages.jupyterlab python3Packages.numpy python3Packages.pandas python3Packages.scikit-learn @@ -14,6 +14,6 @@ mkShell { ]; shellHook = '' - jupyter notebook + jupyter-lab ''; }