카테고리 없음

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

남용2 2019. 8. 12. 20:31

`ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib`가 발생하면 다음과 같이 한다.

--Uninstall
$ dnf remove openssl-devel

--Install
$ dnf install compat-openssl10-devel

--버전 확인 
$ pyenv versions
* system (set by /home/bylee/.pyenv/version)
  3.5.0

--버전 설치
$ pyenv install -v 3.5.0

--버전 변경 
$ pyenv global 3.5.0

$ pyenv versions
  system
* 3.5.0 (set by /home/bylee/.pyenv/version)

--설치 가능 버전 확인
$ pyenv install --list

 

 

참고: https://www.bountysource.com/issues/47297948-error-the-python-ssl-extension-was-not-compiled-missing-the-openssl-lib