导入错误:没有名为 gspread 的模块

Nie*_*ums 7 python python-2.7 python-3.x oauth2client gspread

我正在尝试使用gspreadpython 中的库。我安装了lib,pip install gspread但是当我运行代码时:

import gspread
from oauth2client.service_account import ServiceAccountCredentials

scope = ['https://sreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/drive']
credentials = ServiceAccountCredentials.from_json_keyfile_name('FILE_NAME.json', scope)
gc = gspread.authorize(credentials)
wks = gc.open('Changelog').sheet1
print(wks.get_all_records())
Run Code Online (Sandbox Code Playgroud)

它给了我一个错误:

File "stuff.py", line 1, in <module>
    import gspread
ImportError: No module named gspread
Run Code Online (Sandbox Code Playgroud)

当我在 python3 中运行它时,它没有给我任何导入错误。但那些:

File "stuff.py", line 8, in <module>
    gc = gspread.authorize(credentials)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/gspread/__init__.py", line 38, in authorize
    client.login()
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/gspread/client.py", line 51, in login
    self.auth.refresh(http)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/oauth2client/client.py", line 545, in refresh
    self._refresh(http)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/oauth2client/client.py", line 749, in _refresh
    self._do_refresh_request(http)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/oauth2client/client.py", line 819, in _do_refresh_request
    raise HttpAccessTokenRefreshError(error_msg, status=resp.status)
oauth2client.client.HttpAccessTokenRefreshError: invalid_scope: https://sreadsheets.google.com/feeds is not a valid audience string.
Run Code Online (Sandbox Code Playgroud)

The*_*att 5

有可能pip install gspread安装gspread到不同的 python 解释器。

尝试以下操作以重新安装gspread您要使用的 python 解释器。

import sys, subprocess
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'gspread'])
Run Code Online (Sandbox Code Playgroud)

编辑:下面列出的方法已被弃用,仅适用于 Python 2。

import pip
pip.main(["install", "gspread"])
Run Code Online (Sandbox Code Playgroud)