Skip to content

Commit

Permalink
Update python/bootstrap_venv.sh script***
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsgrn committed Mar 24, 2024
1 parent 160a0a4 commit 12d6631
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/bootstrap_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
# use bash strict mode
# set -euo pipefail || exit 1

rm -rf pyvenv

# create the venv
python3 -m venv ~/pyvenv
python3 -m venv pyvenv

# activate it
source ~/pyvenv/bin/activate
source pyvenv/bin/activate

# upgrade pip inside the venv and add support for the wheel package format
pip install -U pip wheel
Expand Down

0 comments on commit 12d6631

Please sign in to comment.