How do I search for an available Python package using pip?

前端 未结 5 1473

I would like to be able to search for an available Python package using pip (on the terminal). I would like a functionality similar to apt-cache in Ubu

5条回答
  •  你的背包
    2021-01-30 16:10

    As of Dec 2020, pip search will not work (more).

    The current feasible solution is to search online, on: https://pypi.org/ (reference also provided by previous comments).

    If anyone hitting the following error:

    xmlrpc.client.Fault: 
    

    as stated in #5216:

    As an update: XMLRPC search does still remain disabled.

    because:

    As noted in #5216 (comment), a group of servers are hitting the pip search entry point, to an extent that PyPI cannot sustain that load with the current architecture of how pip search works.

提交回复
热议问题