Search code examples
pythonpippygsheets

ImportError: No module named 'pygsheets'


I installed pygsheets module with this command: pip install https://github.com/nithinmurali/pygsheets/archive/master.zip

When I tried to execute script, I got following error:

Traceback (most recent call last): File "/usr/local/bin/speedtest-to-google", line 7, in import pygsheets ImportError: No module named 'pygsheets'

I executed pip list and found: pygsheets (v1.1.2).


Solution

  • Script uses Python3 packages, so command pip3 install has to be used.