Install jupyter maybe?

This commit is contained in:
Lillian Violet 2024-01-18 14:42:13 +01:00
parent 1d422864cc
commit b0217e58ff

View file

@ -17,7 +17,7 @@
devShells = forEachSupportedSystem ({pkgs}: { devShells = forEachSupportedSystem ({pkgs}: {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = with pkgs; packages = with pkgs;
[python311 virtualenv] [python311 jupyter virtualenv]
++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib]); ++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib]);
}; };
}); });