Skip to content

Commit 822e4aa

Browse files
committed
fix for missing venv bits
1 parent 714654b commit 822e4aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Create venv if not already present
22
if [ ! -d "venv" ]; then
3-
python3 -m pip install venv
4-
python3 -m venv venv
3+
python3 -m pip install -U virtualenv
4+
python3 -m virtualenv venv
55
fi
66

77
# Activate the desired venv

0 commit comments

Comments
 (0)