Skip to content

Commit

Permalink
Fix virtual env init
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-klein committed Oct 28, 2023
1 parent 412cfda commit b067f7e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker/build_debian12_bookworm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv
export PATH=$PATH:$HOME/.pyenv/bin
pyenv install 3.10.0
pyenv global 3.10.0
pyenv init -
pyenv virtualenv-init -

eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

pyenv exec python -m venv .venv
pyenv activate venv

Expand Down

0 comments on commit b067f7e

Please sign in to comment.