Lorsque j'ai essayé d'installer python avec pyenv, cela a échoué avec l'erreur suivante.
$ pyenv install 2.7.xx
Installing Python-2.7.xx...
ERROR: The Python zlib extension was not compiled. Missing the zlib?
Please consult to the Wiki page to fix the problem.
https://github.com/yyuu/pyenv/wiki/Common-build-problems
BUILD FAILED
Selon la page écrite dans le message, vous pouvez saisir ce qui suit.
$ CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install -v 2.7.xx
Si cela ne résout pas le problème, il est conseillé de réinstaller les outils de ligne de commande XCode.
$ xcode-select --install
Recommended Posts