From b0217e58fff3d6650d7b020fd917f93f62e5cca7 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 18 Jan 2024 14:42:13 +0100 Subject: [PATCH] Install jupyter maybe? --- jupyter/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter/flake.nix b/jupyter/flake.nix index 06c7fdd..b8aa949 100644 --- a/jupyter/flake.nix +++ b/jupyter/flake.nix @@ -17,7 +17,7 @@ devShells = forEachSupportedSystem ({pkgs}: { default = pkgs.mkShell { packages = with pkgs; - [python311 virtualenv] + [python311 jupyter virtualenv] ++ (with pkgs.python311Packages; [pip jupyter pandas numpy matplotlib]); }; });