Troubleshooting

Bad dependencies resolutions

Make sure to run Python 3.10 and latest version of PIP to prevent dependencies conflicts.

No module named 'xxx'

A ModuleNotFoundError indicates that dependencies have not been correctly installed.

python install.py

Module 'xxx' has no attribute 'xxx'

A AttributeError indicates that dependencies have not been correctly installed.

python install.py

Protobuf parsing failed

Delete the broken model from the .assets/models directory to enforce its re-download.

Solution to most OpenCV issues

Make sure to remove special and unicode characters in -s/--source, -t/--target and -o/--output arguments.

Cannot allocate memory

Memory exceptions during processing are usually cause when the GPU runs out of VRAM. Try to lower the --execution-thread-count to 1 and increase it slowly.

Last updated