Install Errors

Install Errors

Last updated Jun 23, 2026

Installation problems are usually caused by environment or platform mismatches.

pip cannot find pyvorin

  • Upgrade pip: pip install --upgrade pip.
  • Check that you are using a supported Python version (3.10–3.12).
  • Confirm your platform is supported (Linux glibc, macOS 12+, Windows 10/11).

Permission errors

Use a virtual environment instead of installing globally:

python -m venv .venv
source .venv/bin/activate
pip install pyvorin

Binary not found after install

  • Ensure the virtual environment is activated.
  • Add the virtual environment's bin or Scripts directory to your PATH.
  • On Windows, use pyvorin from PowerShell or CMD.

Platform not supported

musl Linux, 32-bit systems, and older Windows versions are not supported. Use a supported platform or container.