Skip to content

Python Inspirations ​

List all packages in current environment ​

python
# One: list all packages in the environment
pip list

# Two: only list packages name and version 
pip freeze

# Three: if using conda

conda list
# One: list all packages in the environment
pip list

# Two: only list packages name and version 
pip freeze

# Three: if using conda

conda list