How do i show information on a python package?



  • Python packages are managed using a command called pip or pip3, pip3 is for installing packages for python3.

    $ pip3 show wheel
    ---
    Metadata-Version: 1.1
    Name: wheel
    Version: 0.29.0
    Summary: A built-package format for Python.
    Home-page: https://bitbucket.org/pypa/wheel/
    Author: Daniel Holth
    Author-email: [email protected]
    License: MIT
    Location: /usr/lib/python3/dist-packages
    Requires: 
    Classifiers:
      Development Status :: 4 - Beta
      Intended Audience :: Developers
      Programming Language :: Python
      Programming Language :: Python :: 2
      Programming Language :: Python :: 2.6
      Programming Language :: Python :: 2.7
      Programming Language :: Python :: 3
      Programming Language :: Python :: 3.2
      Programming Language :: Python :: 3.3
      Programming Language :: Python :: 3.4
    Entry-points:
      [console_scripts]
      wheel = wheel.tool:main
      [distutils.commands]
      bdist_wheel = wheel.bdist_wheel:bdist_wheel
    

Log in to reply
 

© Lightnetics 2024