guides
Virtual Environments
Use Pyvorin with venv, conda, poetry, and pipenv.
Published May 30, 2026
venv
python -m venv .venv
source .venv/bin/activate
pip install pyvorin-thin --extra-index-url https://pypi.pyvorin.com/simple
conda
conda create -n pyvorin python=3.12
conda activate pyvorin
pip install pyvorin-thin --extra-index-url https://pypi.pyvorin.com/simple
poetry
poetry add pyvorin-thin --source pyvorin
Add the source in pyproject.toml:
[[tool.poetry.source]]
name = "pyvorin"
url = "https://pypi.pyvorin.com/simple"
priority = "supplemental"
pipenv
pipenv install pyvorin-thin --index https://pypi.pyvorin.com/simple