Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 486 Bytes

File metadata and controls

28 lines (19 loc) · 486 Bytes

Python environment, venv, and troubleshooting

Versão em Português (Brasil)

Minimum Python version

This project requires Python 3.10 or higher.

Windows: list installed Python versions

py -0p

Create a Python 3.10 virtual environment

py -3.10 -m venv .venv
.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
python -m pip install -e .[dev]

Run tests

python -m pytest -v