Ruby
[오류해결::Ruby] OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources
[오류해결::Ruby] OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources
2023.05.05문제 발생 상황 새로 나온 Ruby 3.2.2버전을 frum으로 설치하고 bundler를 설치하려는데 오류가 발생했다. gem install bundler를 입력하자 아래와 같이 오류가 나왔다. ➜ gem install bundler ERROR: While executing gem ... (Gem::Exception) OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources (Gem::Exception) (이하 생략) 원인 분석 Ruby를 설치하는 과정에서 OpenSSL 관련 의존성이 누락된것이 원인이었다. 해결 방법 Ruby를 설치하는 과정에서 OpenSSL 의존성을 정확하게 참조할 수 있도록 해야한다. 만약 ..