Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 477 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 477 Bytes

AV Tool

Used for helping out AV preservation

Set up development environment on Mac and Linux

Using UV instead of pip

This way is better and faster than using pip.

uv venv
source .venv/bin/activate
uv pip sync requirements-dev.txt
uv pip install -e .
pre-commit install

Using pip

If you don't have uv installed:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements-dev.txt
pip install -e .
pre-commit install