File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 8080 export PYENV_ROOT="$HOME/.pyenv"
8181 export PATH="$PYENV_ROOT/bin:$PATH"
8282 eval "$(pyenv init --path)"
83- pyenv install ${PYVER} -v
84- sudo ln -sf $PYENV_ROOT/versions/${PYVER}/bin/python3 /usr/local/bin/python
83+ pyenv install $PYVER -v
84+ sudo ln -sf $PYENV_ROOT/versions/$PYVER/bin/python3 /usr/local/bin/python
85+ # https://gist.github.com/dukenmarga/3b055616ecef3b38a52de0ad81b67c2a
86+ # said to:
87+ # sudo ln -s /usr/local/lib64/python3.12/lib-dynload /usr/local/lib/python3.12/lib-dynload
88+
89+ - name : " What's in pyenv"
90+ run : |
91+ export PYENV_ROOT="$HOME/.pyenv"
92+ ls -lR $PYENV_ROOT/versions
93+
94+ - name : " What's in /usr/local/lib64"
95+ run : |
96+ export PYENV_ROOT="$HOME/.pyenv"
97+ ls -lR /usr/local/lib64
98+
99+ - name : " What's in /usr/local/lib"
100+ run : |
101+ export PYENV_ROOT="$HOME/.pyenv"
102+ ls -lR /usr/local/lib
85103
86104 - name : " Show diagnostic info"
87105 run : |
You can’t perform that action at this time.
0 commit comments