How do i list installed python packages?



  • pip package manager is the recommended way of install python packages. This is recommended by the Python Package Authority

    $ pip list --format=columns
    Package    Version
    ---------- -------
    appdirs    1.4.3  
    packaging  16.8   
    pip        9.0.1  
    pyparsing  2.2.0  
    setuptools 34.4.1 
    six        1.10.0 
    wheel      0.29.0 
    

Log in to reply
 

© Lightnetics 2024