-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: trying to get pyenv to compile successfully
- Loading branch information
Showing
4 changed files
with
72 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,6 @@ $RUN brew "$( { [ -z "$UPGRADE" ] && echo "install"; } || echo "upgrade" )" "$NA | |
$RUN echo "PYENV_ROOT=$(pyenv root)" | sudo tee -a /etc/profile | ||
$RUN echo "eval \"\$(pyenv init -)\"" | sudo tee -a /etc/profile | ||
|
||
# These deps help us compile Python with pyenv | ||
$RUN echo "Installing Python system library dependencies" | ||
$RUN brew install --only-dependencies [email protected] | ||
$RUN brew install libffi ncurses openssl | ||
|
||
# This saves us the time of compiling Python on codespace startup | ||
$RUN echo "Installing global Python version" | ||
$RUN eval "$(pyenv init -)" | ||
|