preserves/implementations/python/.envrc

9 lines
135 B
Plaintext
Raw Permalink Normal View History

2022-06-03 19:21:44 +00:00
if ! [ -d .venv ]
then
2024-05-06 12:20:25 +00:00
python3 -m venv .venv
2022-06-03 19:21:44 +00:00
. .venv/bin/activate
2023-11-10 16:38:10 +00:00
pip install -e '.[dev]'
2022-06-03 19:21:44 +00:00
else
. .venv/bin/activate
fi