Install GazeTracking
masterGazeTracking requires Python 3.10+. Follow one of these installation methods after cloning the repository:
Option 1: pip (Standard)
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e .Option 2: uv (Fast)
uv venv
uv pip install -e .Option 3: Anaconda
conda env create --file environment.yml
conda activate GazeTrackingOption 4: Docker (Linux only)
./build_and_run.shTroubleshooting dlib installation:
If pip attempts to compile dlib from source and fails, ensure you have cmake installed:
- macOS:
brew install cmake - Ubuntu:
sudo apt install cmake build-essential
git clone https://github.com/antoinelame/GazeTracking.git
cd GazeTracking