Python 3 and Gspread ImportError

2.9k Views Asked by At

When I run Gspread with Python3, I get this error:

ImportError: No module named 'gspread'

When I run with just Python, I get no errors. I installed gspread with pip install gspread --user. I really need to use Python 3, and I expect I should be able to, but I just did something wrong.

4

There are 4 best solutions below

0
On BEST ANSWER

Did you install your pip update in an environment? Doing

 pip3 install gspread --user
2
On

Make sure you are using the correct interpreter.

You may have one or more python interpreters installed so it may be installing to a different one.

0
On

You have to install pip for python3 using apt install python3-pip

Then you can install using pip3 install gspread --user

0
On

I used to have this issue, running

python -m pip install gspread

instead of

pip install gspread

did the trick for me.