Replace jupyter with jupyterlab

This commit is contained in:
coolneng 2022-10-23 11:04:46 +02:00
parent 6fbe501f9a
commit 5c595dbc92
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ with pkgs;
mkShell { mkShell {
buildInputs = [ buildInputs = [
python3 python3
python3Packages.jupyter python3Packages.jupyterlab
python3Packages.numpy python3Packages.numpy
python3Packages.pandas python3Packages.pandas
python3Packages.scikit-learn python3Packages.scikit-learn
@ -14,6 +14,6 @@ mkShell {
]; ];
shellHook = '' shellHook = ''
jupyter notebook jupyter-lab
''; '';
} }