Pycharm을 통해 Python3 Windows에서 요청을 사용하고 SSL 모듈을 사용할 수 없음 오류 수신
이 문제의 원인을 파악하기 위해 몇 시간을 보냈습니다. Anaconda를 다시 설치했는데 완전히 멈췄습니다. 다음을 실행할 때
def Earlybird(daycount):
url = 'https://msft.com'
response = requests.get(url)
print(response)
Earlybird()
나는 오류를 받는다
requests.exceptions.SSLError: HTTPSConnectionPool(host='msft.com',
port=443): Max retries exceeded with url: / (Caused by SSLError("Can't
connect to HTTPS URL because the SSL module is not available."))
이 문제의 원인이 무엇인지 모르겠습니다. Anaconda가 최근 설치이기 때문에 모든 것이 최신 버전이라고 가정하므로 이것이 잘못된 SSL을 가리키는 지 확실하지 않습니다. 나는 파이썬을 처음 접했기 때문에 인내심에 감사드립니다. -