Python «SSLError (« Не удается подключиться к URL-адресу HTTPS, поскольку модуль SSL недоступен. ») ': / Simple / documentstils /» - PullRequest
1 голос
/ 18 апреля 2020

ПРОБЛЕМА

  • Что бы я ни пытался установить с терминала с помощью пункта, я получаю это сообщение об ошибке
  • Возможно, я установил и полностью удалил homebrew (macOS 10.12) раньше, но я не уверен, как решить эту проблему
  • Приложение Django 3.0 работает отлично

Установки я пытаюсь запустить (во всех случаях одно и то же сообщение об ошибке)

pip install -r requirements.txt
pip install django-storages
pip install ssl

СООБЩЕНИЕ ОБ ОШИБКЕ

WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django-storages/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django-storages/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django-storages/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django-storages/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django-storages/
Could not fetch URL https://pypi.org/simple/django-storages/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/django-storages/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
ERROR: Could not find a version that satisfies the requirement django-storages (from versions: none)
ERROR: No matching distribution found for django-storages
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping

Пробные решения

1 Ответ

1 голос
/ 19 апреля 2020

{ ссылка }

go в ваш каталог virtualenv (но не запускать workon):

cd ~/.virtualenv/name_of_broken_venv

Теперь удалите эти файлы:

rm -rf .Python bin/python* lib/python2.7/* include/python2.7

Затем, чтобы восстановить свой venv, запустите:

virtualenv .
pip install -r requirements.txt
...