Jupyter für Mathe

This commit is contained in:
Erik Grobecker 2024-11-18 12:13:17 +01:00
parent e14a9a0d19
commit 0ddb8af527
Signed by: Erik
GPG key ID: 80D020D0ABBD3FB2
4 changed files with 551 additions and 34 deletions

View file

@ -1,12 +1,22 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
pkgs.typst
pkgs.typstyle
pkgs.tinymist
pkgs.tdf
pkgs.agebox
pkgs.mermaid-cli
packages = with pkgs; [
typst
typstyle
tinymist
tdf
agebox
mermaid-cli
# for math
python312
python312Packages.sympy
python312Packages.numpy
python312Packages.matplotlib
python312Packages.scipy
python312Packages.pandas
python312Packages.jupyter
python312Packages.ipykernel
];
}