본문 바로가기

프로그래밍/Python

[PYTHON|SO번역] pip search 실행시에 XMLRPC API is currently disabled due to unmanageable load 에러 발생

반응형

https://stackoverflow.com/questions/66375972/getting-error-with-pip-search-and-pip-install

 

Getting error with pip search and pip install

hi it is about two days I am getting this error: ERROR: XMLRPC request failed [code:-32500] RuntimeError: PyPI's XMLRPC API is currently disabled due to unmanageable load and will be deprecated in ...

stackoverflow.com

패키지를 검색하는 pip search 명령을 실행하면 에러가 발생하고 있다. 아마도 search 명령은 앞으로 지원을 중지할 것 같다.

위 링크의 질문과 답변 중 주요부분만 살짝 번역한다.

질문 : 얼마전부터 pip search 를 실행하면, ERROR: XMLRPC request failed [code:-32500] RuntimeError: PyPI's XMLRPC API is currently disabled due to unmanageable load and will be deprecated in the near future. See https://status.python.org/ for more information. 와 같은 에러가 발생한다.

답변 (by Falko) : 안타깝게도 `pip serach` 명령은 이제 완전히 금지된다. 2020년 11월 11일 이후로 한시간에 수만건의 search 요청이 발생하고 있다고 한다. 그리고 search 명령을 수행하는 XMLRPC API 는 이미 이 일이 발생하기 전부터 지원중지되었다.

따라서 패키지검색은 pypi.org 에서 바로 할 수밖에 없을 듯 하다. 또는 pypi-simple-search , pipsearch 패키지를 사용해야 할 것이다.

728x90