feature: move code from python to jupyter notebook, add plots

This commit is contained in:
2026-06-18 15:28:26 +02:00
parent 7e0b684afb
commit 6371ebf1e2
14 changed files with 291 additions and 82 deletions
+12 -7
View File
@@ -1,22 +1,27 @@
{ pkgs, lib, config, ... }:
{ pkgs, ... }:
{
packages = [
pkgs.zlib
pkgs.stdenv.cc.cc.lib
];
languages.python = {
enable = true;
version = "3.14.4";
venv.enable = true;
venv.requirements = ''
ipython
jupyter
jupyterlab
matplotlib
numpy
pandas
scikit-learn
seaborn
'';
};
packages = [
pkgs.graphviz
pkgs.zsh
env.LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.zlib
pkgs.stdenv.cc.cc.lib
];
}