Added jupyter notebook nix shell template

main
Guus van Meerveld 3 months ago
parent 6534c78b59
commit 3ece19dde1

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> { } }:
let
packages = ps: with ps; [
pandas
numpy
scikit-learn
matplotlib
ipykernel
jupyter
scipy
autopep8
seaborn
];
python = pkgs.python3.withPackages packages;
in
python.env
Loading…
Cancel
Save