Jairman
@Jairman
Тот самый

Как исправить ошибку «Can't connect to HTTPS URL because the SSL module is not available.»?

Помогите это исправить, сижу на Windows 10
Библиотеки:
import json
import requests as r
from bs4 import BeautifulSoup
from datetime import date
import html5lib

Ошибка:
5e29728e24b53074353407.png
  • Вопрос задан
  • 1502 просмотра
Решения вопроса 1
deepblack
@deepblack Куратор тега Python
SSL module is not available


https://stackoverflow.com/a/45909353/2981702

The problem is that Anaconda Python ships with its own SSL libraries and does not use the system SSL libraries when compiling the Python ssl module. The mod_ssl module in Apache is using the system libraries.
<--------->
The only solution is to use the system Python version and not Anaconda Python
Unless you have a specific requirement, is better to use the system Python version and not Anaconda Python.


Запускай через обычный Python, не через Anaconda
https://www.python.org/downloads/windows/
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы