5 lines
174 B
Bash
5 lines
174 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
source "./venv/bin/activate" || source "./venv/Scripts/activate" || :
|
||
|
|
python -O "./src/main.py" --no-edgetpu --no-tflite --no-autotest $*
|