Python Forum

Full Version: gspread and installing in general
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I'm learning Python, so sorry if this is a dumb question. I did try finding the answer before posting, but I was not successful. I installed gspread ' pip install gspread' , but afterwards when I used the pip list -o command, I thought I would see 'gspread' listed, but I don't.
How do I know it was actually installed?
thank you
It should be found in pip list
check pip -V
and python -V
make sure they match
(Sep-30-2022, 02:39 AM)Larz60+ Wrote: [ -> ]It should be found in pip list
check pip -V
and python -V
make sure they match

Thank you very much. I can see it with 'pip -V'... I installed this on my PC for testing for now, but need to install on a server. I understand that this is just installing a module so that gspread can be used and that it wouldn't cause any problems for other active Python scripts.
Thank you again