mirror of
https://github.com/yakhyo/uniface.git
synced 2025-12-30 09:02:25 +00:00
706 B
706 B
🚀 Installation
📦 Install from PyPI
CPU-only (default):
pip install uniface
This installs the CPU-compatible version of ONNX Runtime (onnxruntime) and all core dependencies.
GPU support:
pip install "uniface[gpu]"
This installs onnxruntime-gpu for accelerated inference on supported NVIDIA GPUs.
Make sure your system meets the ONNX Runtime GPU requirements.
🔧 Install from GitHub (latest version)
Clone the repository and install it manually:
git clone https://github.com/yakhyo/uniface.git
cd uniface
# CPU version
pip install .
# Or with GPU support
pip install ".[gpu]"