-
Notifications
You must be signed in to change notification settings - Fork 0
Python Tips & Tricks
Joey Kleiner edited this page Nov 2, 2022
·
34 revisions
python installs:
# display all python installs on ubuntu
ls -ls /usr/bin/python*
# display python version being used
python -Vpackage installs:
# see location(s) of installed packages
python -m site
# show all installed packages
pip list
# see location of individual package
pip show pandasinstall packages:
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org pip matplotlib
C:\Users\jklei\AppData\Local\Programs\Python\Python310\Scripts\pip3 install pandasql