Skip to content

Commit

Permalink
fix(pyenv): don't try to install in CI so we can debug
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed Nov 18, 2023
1 parent a652db8 commit 1d41ff1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions install/linux_amd64/03-pyenv
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ $RUN echo "eval \"\$(pyenv init -)\"" | sudo tee -a /etc/profile

# This saves us the time of compiling Python on codespace startup
$RUN echo "Installing global Python version"
$RUN eval "$(pyenv init -)"
$RUN pyenv install 3.11.6
$RUN pyenv global 3.11.6
$RUN python -m pip install -U pip
$RUN brew "$( { [ -z "$UPGRADE" ] && echo "install"; } || echo "upgrade" )" "python@3.11"
# $RUN eval "$(pyenv init -)"
# $RUN pyenv install 3.11.6
# $RUN pyenv global 3.11.6
# $RUN python -m pip install -U pip

0 comments on commit 1d41ff1

Please sign in to comment.