diff options
author | Ben Sima <ben@bsima.me> | 2019-03-12 10:06:24 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-03-12 10:06:24 -0700 |
commit | fcb60b155cf01376a500d12db9bbd5dfd105c059 (patch) | |
tree | 229fbc794dac15b42f4e26db9180cc11c7739757 | |
parent | 2eda818fda20d095fc1fe57f7666ec2b0a55cfcf (diff) |
Add ipywidgets to jupyter
-rw-r--r-- | machines/lithium.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/lithium.nix b/machines/lithium.nix index 7c78483..7ccc93c 100644 --- a/machines/lithium.nix +++ b/machines/lithium.nix @@ -176,11 +176,11 @@ in kernels = { python3 = let env = (pkgs.python3.withPackages (p: with p; [ - ipykernel pandas scikitlearn numpy matplotlib sympy + ipykernel pandas scikitlearn numpy matplotlib sympy ipywidgets ])); in { displayName = "py3"; - argv = [ + argv = [ "${env.interpreter}" "-m" "ipykernel_launcher" |