Revert "Run jupyter automatically in python datasci"

This reverts commit b5abb09507.
This commit is contained in:
coolneng 2023-04-20 10:13:15 +02:00
parent 6fbe501f9a
commit 5fd053f4c4
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 2 additions and 6 deletions

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
'';
}