1

fix: set matplotlib to kitcat for images in terminal

This commit is contained in:
Himadri Bhattacharjee
2025-10-16 18:39:31 +05:30
parent 9cec62880a
commit 72c40e1a4d

View File

@@ -14,10 +14,9 @@
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = [
(pkgs.python311.withPackages (
(pkgs.python313.withPackages (
ps: with ps; [
numpy
ipython
matplotlib
pandas
scikit-learn
@@ -36,14 +35,13 @@
buildInputs = with ps; [
matplotlib
setuptools
build
];
})
]
))
];
MPLBACKEND = "module://kitcat";
MPLBACKEND = "kitcat";
};
});
};