Replace jupyter with jupyterlab

This commit is contained in:
2022-10-23 11:04:46 +02:00
parent 6fbe501f9a
commit 5c595dbc92

View File

@@ -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
'';
}