Files
uniface/docs/installation.md
2025-11-07 23:58:47 +09:00

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]"