preserves/implementations/python/.envrc

9 lines
134 B
Plaintext
Raw Normal View History

2022-06-03 19:21:44 +00:00
if ! [ -d .venv ]
then
python -m venv .venv
. .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