
Eddie B. answered 04/03/19
Purdue University student studying computer engineering
Using pip, you can use the freeze command by writing: pip freeze
If you want to perform a search you can use the grep command by writing: pip freeze | grep keyword
with "keyword" being your search entry. The character after freeze is a pipe or vertical bar character
Joe P.
I also found that you can get this information from the Python's CLI by typing: help("modules")08/12/20