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.

bash
pip install -r requirements.txt
pip install -r requirements-app.txt

So, I’ve provided a file called requirements-full.txt, which contains all the dependencies that have been installed.

bash
cd HivisionIDPhotos

uv venv .venv

source .venv/bin/activate

uv pip install -r requirements-full.txt

Additionally, I also commented out the line show_api=False at line 78 of app.py.Hope this helps you.

requirements-full.txt

Source: Zeyi-Lin/HivisionIDPhotos