Knowledgebase

Help articles for accounts, billing, licences, and common compiler questions.

Filtered by category: Install Errors. Clear filter
Install Errors

Install Errors

Installation problems are usually caused by environment or platform mismatches. pip cannot find pyvorinUpgrade 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 errorsUse a virtual environment instead of installing globally:python -m venv .venv source .venv/bin/activate pip install pyvorin Binary not found after installEnsure 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 supportedmusl Linux, 32-bit systems, and older Windows versions are not supported. Use a supported platform or container.

Updated 1 month ago

Install Errors

pip Not Found

If the pip command is not found, use the module form: python -m pip install pyvorin Make sure you are using a supported Python version. On some systems, pip may be named pip3.

Updated 1 month ago

Install Errors

Permission Denied

Permission errors usually happen when installing into a system Python without sufficient privileges. Use a virtual environment or pipx instead of sudo pip install. This avoids permission issues and keeps dependencies isolated.

Updated 1 month ago

Install Errors

Unsupported Platform

Pyvorin supports Linux (glibc), macOS 12+, and Windows 10/11 on x86_64 and ARM64. If your platform is not supported, you can run Pyvorin inside a supported container or virtual machine. Check the output of pyvorin doctor for details.

Updated 1 month ago

Install Errors

Virtual Environment Issues

If Pyvorin is installed but cannot be found, confirm the correct virtual environment is activated. which pyvorin which python Both should point inside the virtual environment. If not, reactivate the environment or reinstall Pyvorin inside it.

Updated 1 month ago