Files
ImageProcessing/shell.nix
T
2025-10-14 04:33:25 +03:00

19 lines
297 B
Nix

{ pkgs ? import <nixpkgs> {} }: let
pypkgs = pkgs.python3Packages;
in
pkgs.mkShell {
buildInputs = with pypkgs; [
python
opencv4
virtualenv
pkgs.jupyter
ipython
matplotlib
scikit-image
];
shellHook = ''
jupyter notebook
'';
}