The Python ssl extension was not compiled. Missing the OpenSSL lib?

1,081 阅读1分钟

Mac使用pyenv安装指定Python版本遇到 OpenSSL Missing的解决方案 完整错误信息如下:

ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?

执行下面命令

CFLAGS="-I$(brew --prefix openssl)/include" LDFLAGS="-L$(brew --prefix openssl)/lib" pyenv install 2.7.14