Skip to content

Commit c55fcb2

Browse files
committed
feat: start using venv instead of virtualenv
1 parent 5c0a23f commit c55fcb2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cfg4dev

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ export DEV_ENV_DOCKER_IMAGE=simonsdave/cloudfeaster-dev-env:build
55
if [ -d ./env ]; then
66
source ./env/bin/activate
77
else
8-
python3.7 -m pip install virtualenv
9-
10-
virtualenv env
8+
python3 -m venv env
119
source ./env/bin/activate
1210

13-
python3.7 -m pip install --upgrade pip
11+
pip install --upgrade pip
1412

1513
curl -s -L https://raw.githubusercontent.com/simonsdave/dev-env/master/bin/install-dev-env.sh | bash -s --
1614

0 commit comments

Comments
 (0)