Darryl Dias

10 Feb 2022 in
If you search for packages using pip, you may encounter this error. This is because, after December 2020, the pip search functionality was discontinued due to an unmanageable load on PyPi's XMLRPC API service. ```
```
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.
```
```
The alternative to this is installing the pip\_search package using pip. Pip search is similar to the pip search command; it does the same but presents the search result better.
You can install it by entering the command below in a Terminal or Command Prompt window.
```
```
pip install pip_search
```
```
Once the package installs, you can execute it with pip\_search and add the package name you are searching for, like the example below.
```
```
pip_search opencv
```
```
The command above should output a similar result.
![](https://darryldias.me/wp-content/uploads/pip_search_opencv_in_console-1024x607.png)
That's it, folks, happy coding. Feel free to leave a comment below or ask any questions.