TP-reinforcement-learning/TP2/shell.nix

13 lines
227 B
Nix
Raw Normal View History

2023-06-23 18:10:32 +00:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [
poetry
python3
python310Packages.numpy
python310Packages.matplotlib
python310Packages.ipykernel
python310Packages.pip
];
}