If I install some python pacakges, like opencv-python
, it will install the cv2 pacakge.
But before I look at opencv's document, how can I inspector the opencv-python
pacakge, and find out what it installed.
Like pip info opencv-python
, but it will not print the installed packages.
Update:
I find the pip installed place /usr/local/lib/python3.11/site-packages/opencv_python-4.7.0.72.dist-info/top_level.txt
contains the top_level package(like installed packages). So I can write some script to parse this file, or python has builltin util to print this info?