Python脚本在Windows上不起作用(但适用于mac)

时间:2017-11-20 16:51:27

标签: python python-2.7 httplib2 pygsheets

我在mac上成功运行了相同的脚本,但在Windows Server 2012 r2上失败了。我想知道什么是原因,我应该检查什么? 这是一个脚本:

import pygsheets
gc = pygsheets.authorize(service_file='credentials.json')

我收到以下错误:

Traceback (most recent call last):
  File "myscript.py", line 2, in <module>
    gc = pygsheets.authorize(service_file='credentials.json')
  File "C:\ProgramData\Anaconda2\lib\site-packages\pygsheets\client.py", line 55
2, in authorize
    rclient = Client(oauth=credentials, **client_kwargs)
  File "C:\ProgramData\Anaconda2\lib\site-packages\pygsheets\client.py", line 79
, in __init__
    self._fetch_sheets()
  File "C:\ProgramData\Anaconda2\lib\site-packages\pygsheets\client.py", line 92
, in _fetch_sheets
    results = self._execute_request(None, request, False)
  File "C:\ProgramData\Anaconda2\lib\site-packages\pygsheets\client.py", line 41
8, in _execute_request
    response = request.execute()
  File "C:\ProgramData\Anaconda2\lib\site-packages\oauth2client\_helpers.py", li
ne 133, in positional_wrapper
    return wrapped(*args, **kwargs)
  File "C:\ProgramData\Anaconda2\lib\site-packages\googleapiclient\http.py", lin
e 835, in execute
    method=str(self.method), body=self.body, headers=self.headers)
  File "C:\ProgramData\Anaconda2\lib\site-packages\googleapiclient\http.py", lin
e 162, in _retry_request
    resp, content = http.request(uri, method, *args, **kwargs)
  File "C:\ProgramData\Anaconda2\lib\site-packages\oauth2client\transport.py", l
ine 175, in new_request
    redirections, connection_type)
  File "C:\ProgramData\Anaconda2\lib\site-packages\oauth2client\transport.py", l
ine 282, in request
    connection_type=connection_type)
  File "C:\ProgramData\Anaconda2\lib\site-packages\httplib2\__init__.py", line 1
659, in request
    (response, content) = self._request(conn, authority, uri, request_uri, metho
d, body, headers, redirections, cachekey)
  File "C:\ProgramData\Anaconda2\lib\site-packages\httplib2\__init__.py", line 1
460, in _request
    _updateCache(headers, response, content, self.cache, cachekey)
  File "C:\ProgramData\Anaconda2\lib\site-packages\httplib2\__init__.py", line 4
74, in _updateCache
    cache.set(cachekey, text)
  File "C:\ProgramData\Anaconda2\lib\site-packages\httplib2\__init__.py", line 7
41, in set
    f = file(cacheFullPath, "wb")
IOError: [Errno 2] No such file or directory: 'c:\\users\\myusername\\appdata\\local\\t
emp\\1fda43ed-78ca-4316-b85c-51e7f359b3cb\\www.googleapis.com,drive,v3,files,inc
ludeTeamDriveItems=false&pageSize=500&fields=files%28id%2C+name%29&corpora=user&
supportsTeamDrives=false&q=mimeType%3D%27application%2Fvnd.google-apps.spreadshe
et%,5a24ad0f84d69be2396dd368422a2b6c'

显然这个文件夹是空的:

c:\\users\\myusername\\appdata\\local\\temp\\1fda43ed-78ca-4316-b85c-51e7f359b3cb

我想知道是否与Windows上的c:\ ProgramData访问级别有关,如果是这样,我该如何解决? 我还在两台机器上更新了conda和pygsheets。

1 个答案:

答案 0 :(得分:3)

它是pygsheets中的已知错误,从github安装以获得修复。或者作为解决方法,您可以关闭缓存。

import pygsheets
gc = pygsheets.authorize(service_file='credentials.json', no_cache=True)