Il peut en être de même depuis Mac OSX 10.14.x, Après la mise à niveau du système d'exploitation vers ** 10.15.5 **, je n'ai pas pu installer 2.7.x avec pyenv. Je vais le laisser comme mémo.
Lors de l'installation de Python 2.7.13 avec pyenv, l'erreur suivante s'affiche.
% 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
%
Dans mon cas, Xcode et CommandLine Tool étaient déjà installés, donc la commande suivante a bien fonctionné.
CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install -v 2.7.13
À propos, si vous n'avez pas installé Xcode, installez l'outil de ligne de commande après avoir installé Xcode.
xcode-select —install
De plus, bien que cela soit décrit dans l'erreur, si ce qui précède ne résout pas le problème, il est préférable de voir le document officiel. .. https://github.com/pyenv/pyenv/wiki/Common-build-problems
Recommended Posts