Es kann das gleiche sein, seit Mac OSX 10.14.x, Nach dem Upgrade des Betriebssystems auf ** 10.15.5 ** konnte ich 2.7.x nicht mit pyenv installieren. Ich werde es als Memo hinterlassen.
Bei der Installation von Python 2.7.13 mit pyenv wird der folgende Fehler angezeigt.
% pyenv install 2.7.13
python-build: use openssl from homebrew
python-build: use readline from homebrew
Downloading Python-2.7.13.tar.xz...
-> https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tar.xz
Installing Python-2.7.13...
patching file ./Lib/site.py
python-build: use readline from homebrew
ERROR: The Python zlib extension was not compiled. Missing the zlib?
Please consult to the Wiki page to fix the problem.
https://github.com/pyenv/pyenv/wiki/Common-build-problems
BUILD FAILED (OS X 10.15.5 using python-build 1.2.8)
Last 10 log lines:
rm -f /Users/nier/.pyenv/versions/2.7.13/share/man/man1/python.1
(cd /Users/nier/.pyenv/versions/2.7.13/share/man/man1; ln -s python2.1 python.1)
if test "xno" != "xno" ; then \
case no in \
upgrade) ensurepip="--upgrade" ;; \
install|*) ensurepip="" ;; \
esac; \
./python.exe -E -m ensurepip \
$ensurepip --root=/ ; \
fi
%
In meinem Fall waren Xcode und CommandLine Tool bereits installiert, sodass der folgende Befehl einwandfrei funktionierte.
CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install -v 2.7.13
Wenn Sie Xcode nicht installiert haben, installieren Sie das Command Line Tool nach der Installation von Xcode.
xcode-select —install
Obwohl dies im Fehler beschrieben ist, ist es außerdem besser, das offizielle Dokument zu lesen, wenn das Problem durch das oben Gesagte nicht gelöst wird. .. https://github.com/pyenv/pyenv/wiki/Common-build-problems
Recommended Posts