Files
ImageProcessing/shell.nix
T

20 lines
314 B
Nix
Raw Normal View History

2025-10-14 04:06:35 +03:00
{ pkgs ? import <nixpkgs> {} }: let
pypkgs = pkgs.python3Packages;
in
pkgs.mkShell {
buildInputs = with pypkgs; [
python
opencv4
virtualenv
pkgs.jupyter
ipython
matplotlib
scikit-image
2025-10-14 04:59:57 +03:00
catppuccin
2025-10-14 04:06:35 +03:00
];
shellHook = ''
jupyter notebook
'';
}