Solve the issue of errors related to startup dependencies in the source code
Author: Tom6255Created Jun 25, 2026Updated Jun 25, 2026
I found that trying to set up a virtual environment based solely on the description in the readme file results in numerous dependencies and packages that prevent the project from being launched.
pip install -r requirements.txt
pip install -r requirements-app.txtSo, I’ve provided a file called requirements-full.txt, which contains all the dependencies that have been installed.
cd HivisionIDPhotos
uv venv .venv
source .venv/bin/activate
uv pip install -r requirements-full.txtAdditionally, I also commented out the line show_api=False at line 78 of app.py.Hope this helps you.
Source: Zeyi-Lin/HivisionIDPhotos