diff options
-rwxr-xr-x | rebuild_venv.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rebuild_venv.sh b/rebuild_venv.sh new file mode 100755 index 0000000..b040003 --- /dev/null +++ b/rebuild_venv.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +test -d venv && rm -Rf venv/ +/usr/bin/env python3 -m virtualenv ./venv/ +source ./venv/bin/activate +pip install --editable . |