파이썬 패키지를 설치할 때는 보통 아래와 같은 명령을 터미널에 입력함으로 설치합니다.
pip install 패키지명
문제 발생
그런데 다음과 같은 경고 및 에러 메시지가 뜨는 경우가 있습니다.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001DC10B3FB20>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed')': /simple/pyinstaller/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001DC10B3FE50>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed')': /simple/pyinstaller/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001DC10B3FF10>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed')': /simple/pyinstaller/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001DC10B842E0>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed')': /simple/pyinstaller/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000001DC10B84490>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed')': /simple/pyinstaller/
ERROR: Could not find a version that satisfies the requirement pyinstaller (from versions: none)
ERROR: No matching distribution found for pyinstaller
해결 방법
이런 에러가 떴다면, 인터넷 연결 상태를 확인해보세요. 인터넷이 연결 안 되어 있을 가능성이 큽니다. 파이썬 패키지 저장소에서 패키지를 다운로드 받으려면 당연히 인터넷이 연결되어 있어야 합니다.
'Dev > python' 카테고리의 다른 글
[python] 가상환경 virtualenv 사용 방법 (venv와 비교) (0) | 2023.01.06 |
---|---|
[python] Pydantic 이해하기 (data class보다 더 나은 듯?) (0) | 2023.01.04 |
[python] 패키지 관리자 poetry의 pyproject.toml과 poetry.lock (2) | 2023.01.03 |
[python + sqlalchemy] sqlalchemy로 SQL 없이 관계형 데이터베이스 CRUD 하기 (0) | 2022.12.30 |
[python] sklearn.metrics.f1_score로 F1 점수 구할 때 라벨이 1이 아닐 때 생기는 오류 해결법 (0) | 2022.11.15 |
[python] k-means 알고리즘으로 도매업 고객사 분류하기 (0) | 2022.11.14 |
[python] 의사결정 나무(decision tree)로 유방암 진단하기 (0) | 2022.11.13 |
[python] 가상 환경에 설치되어 있는 패키지 목록을 전달해주는 방법(pip freeze) (0) | 2022.11.09 |