Skip to content

Commit

Permalink
Fix PATH export in install_python.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Nov 2, 2023
1 parent 476da73 commit 5364eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apt_install \

# Put things under /opt/venv, if nothing else is specified
export VIRTUAL_ENV="${VIRTUAL_ENV:=/opt/venv}"
export PATH="${VIRTUAL_ENV}:${PATH}"
export PATH="${VIRTUAL_ENV}/bin:${PATH}"

python3 -m venv "${VIRTUAL_ENV}"

Expand Down

0 comments on commit 5364eb5

Please sign in to comment.