GCode-Generator/shell.nix
Sélène Corbineau f06589562c Various bugfixes, moved svgtogcode to its own file
Aussi, on peut exercise toute la communication c'est trop chouette!!!
2025-01-15 01:13:41 +01:00

13 lines
170 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps : [
ps.numpy
ps.pyaudio
ps.matplotlib
ps.scipy
]))
];
}