Initial (and hopefully last) commit
This commit is contained in:
commit
06374b2608
8 changed files with 326 additions and 0 deletions
18
shell.nix
Normal file
18
shell.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
let
|
||||
pkgs = import <nixpkgs> {};
|
||||
in pkgs.mkShell {
|
||||
packages = [
|
||||
(pkgs.python3.withPackages (python-pkgs: [
|
||||
python-pkgs.pygame
|
||||
python-pkgs.matplotlib
|
||||
python-pkgs.sklearn-compat
|
||||
python-pkgs.pandas
|
||||
python-pkgs.opencv-python
|
||||
python-pkgs.pytesseract
|
||||
python-pkgs.tensorflow
|
||||
python-pkgs.keras
|
||||
python-pkgs.pyqt6
|
||||
]))
|
||||
];
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue