Skip to content

Python Tips & Tricks

Joey Kleiner edited this page Oct 26, 2022 · 34 revisions

python installs:

# display all python installs on unix
ls -ls /usr/bin/python*

# display python version being used
python -V

package installs:

# see location(s) of installed packages 
python -m site

# show all installed packages
pip list

# see location of individual package
pip show pandas

Clone this wiki locally