Я новичок в программировании и недавно начал изучать Python. Всякий раз, когда я вхожу pip install django (например), я получаю следующие сообщения об ошибках:
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)'))':/simple/django/
Could not fetch URL https://pypi.org/simple/django/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host="pypi.org", port=443): Max retries exceeded with url: /simple/django/ (Caused by SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)'))) - skipping
ERROR: Could not find a version that satisfies the requirement django
ERROR: No matching distribution found for django
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(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1123)'))) - skipping
Я получаю одни и те же сообщения независимо от того, что устанавливаю. Я пробовал такие варианты команд, как python -m pip install django==3.1.7, но безуспешно. Я установил Python прямо с веб-сайта и использую PyCharm. Я не могу прогрессировать, поэтому буду очень благодарен за помощь!
