Forrest logo
back to the pip3 tool

pip3:tldr:41c4b

pip3: Show installed package info.
$ pip3 show ${package_name}
try on your machine

The command "pip3 show" is used to display information about a specific Python package installed in a system. When executing the command "pip3 show ${package_name}", the placeholder "${package_name}" should be replaced with the actual name of the package you want to get information about. For example, if you have a package named "numpy" installed and you want to see its details, you would run the following command: ``` pip3 show numpy

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pip3 tool