簡體   English   中英

Python腳本在Windows上不起作用(但適用於mac)

[英]Python script doesn't work on Windows (but works on mac)

我在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。

它是pygsheets中的已知錯誤,從github安裝以獲得修復。 或者作為解決方法,您可以關閉緩存。

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM