Revert "Run jupyter automatically in python datasci"

This reverts commit b5abb09507.
This commit is contained in:
2023-04-20 10:13:15 +02:00
parent 6fbe501f9a
commit 5fd053f4c4

View File

@@ -1,8 +1,8 @@
{ pkgs ? import <nixpkgs> { } }:
{ config, lib, pkgs, ... }:
with pkgs;
mkShell {
{
buildInputs = [
python3
python3Packages.jupyter
@@ -12,8 +12,4 @@ mkShell {
python3Packages.matplotlib
python3Packages.seaborn
];
shellHook = ''
jupyter notebook
'';
}