Run jupyter automatically in python datasci

This commit is contained in:
2022-10-20 10:29:28 +02:00
parent c866015907
commit a05122c8bc

View File

@@ -2,7 +2,7 @@
with pkgs;
{
mkShell {
buildInputs = [
python3
python3Packages.jupyter
@@ -12,4 +12,10 @@ with pkgs;
python3Packages.matplotlib
python3Packages.seaborn
];
shellHook = ''
trap "kill 0" EXIT
jupyter notebook
'';
}