diff --git a/acAubo-main/acaubo/.gitignore b/acAubo-main/acaubo/.gitignore index a94acc6..3345c1b 100644 --- a/acAubo-main/acaubo/.gitignore +++ b/acAubo-main/acaubo/.gitignore @@ -4,12 +4,18 @@ __pycache__/ *.class *.pyc *.cache +.pytest_cache/ # IDE 配置文件(可选,若不需要提交 IDE 配置) .idea/ *.csv +# PyInstaller 打包产物 +build/ +dist/ + +# 运行时生成文件 ui_settings.json # VSCode 配置 diff --git a/acAubo-main/acaubo/requirements.txt b/acAubo-main/acaubo/requirements.txt new file mode 100644 index 0000000..e1d01a4 --- /dev/null +++ b/acAubo-main/acaubo/requirements.txt @@ -0,0 +1,14 @@ +# TomatoPick runtime dependencies for Windows packaging. +# If you need CUDA acceleration, install a matching torch/torchvision/torchaudio +# build first, then run: pip install -r requirements.txt +# tkinter is not listed here because it is bundled with the standard Windows +# CPython installer. + +Pillow==11.2.1 +opencv-python==4.10.0.84 +numpy==2.0.0 +pyrealsense2==2.55.1.6486 +pyaubo_agvc_sdk==0.2.0 +pyaubo_sdk==0.24.1 +ultralytics==8.3.112 +pyinstaller>=6,<7 \ No newline at end of file