pip search error
When searching for package names with pip the searches are all: pip search xxx. but this is reporting an error:
Looking around, I found that pip search is no longer available due to some bugs, and has been replaced by the package pip-search.
The solution is as follows
Install the pip search package first
pip install pip-search
After that, run pip search [package name]:
pip_search xxx
Other common operations
Installation: pip install XXX
Uninstall: pip uninstall XXX
List: pip list
Update pip: python -m pip install -U pip
-m pip install --upgrade pip
View pip version: pip --version
Check the version of all pip packages and list the ones that can be updated: pip list --outdated
Upgrade the specified library: pip3 install --upgrade Library Name
Assign a version number to a package: pip install --upgrade package name == version number
Use pip-review to update all libraries at once: pip-review --local --interactive
summarize
The above is a personal experience, I hope it can give you a reference, and I hope you can support me more.