Added multitag, includes preprocess.py, sampler.py and multitag.py(the main gui for labelling/annotation)
This commit is contained in:
16
multitag/shell.nix
Normal file
16
multitag/shell.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
python313
|
||||
python313Packages.tkinter
|
||||
python313Packages.pandas
|
||||
python313Packages.numpy
|
||||
];
|
||||
|
||||
|
||||
shellHook = ''
|
||||
echo "Development environment loaded"
|
||||
echo "Python: $(python --version)"
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user