1

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).

plaidshirt
  • 5,189
  • 19
  • 91
  • 181

2 Answers2

3

Use

pip3 install command to access it

iamsankalp89
  • 4,607
  • 2
  • 15
  • 36
1

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

plaidshirt
  • 5,189
  • 19
  • 91
  • 181