diff options
author | Eddy Pedroni <epedroni@pm.me> | 2024-11-09 18:45:35 +0100 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2024-11-09 18:45:35 +0100 |
commit | a2257a900d4fffd6f94b73f1c48c62370ed1d684 (patch) | |
tree | 5ccffc16401bae513bf2d43f9a27f39356712c1a | |
parent | 4bdf8e60238e786790da429d0550d468dd93711d (diff) |
Improve venv bootstrap
-rwxr-xr-x | bootstrap-venv.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstrap-venv.sh b/bootstrap-venv.sh index b105996..99919d6 100755 --- a/bootstrap-venv.sh +++ b/bootstrap-venv.sh @@ -1,4 +1,5 @@ #!/usr/bin/zsh +rm -rf venv python -m venv venv ./venv/bin/pip install -r requirements.txt |