0

我已经在 Windows 7 上成功安装了 pygsheets,但在我的 Ubuntu 14.04 服务器上,我不断收到此错误。该文件名为 client_secret.json 并与我的 py 文件放在同一目录中,因此路径是相对且正确的。还尝试了 json 文件的全名。我应该将文件放在其他地方吗?我的输出错误是这样的:

gc = pygsheets.authorize(outh_file='client_secret_some_numbers_and_signs', no_cache=True)
File "/usr/local/lib/python3.4/dist-packages/pygsheets/client.py", line 549, in authorize outh_nonlocal=outh_nonlocal)  
File "/usr/local/lib/python3.4/dist-packages/pygsheets/client.py", line 505, in get_outh_credentials raise IOError(2, "Client secret file does not exist.", client_secret_file)   
FileNotFoundError: [Errno 2] Client secret file does not exist.: 'client_secret_some_numbers_and_signs.json'    
4

1 回答 1

0

设置 json 文件的绝对路径就可以了。

于 2018-02-15T20:35:47.710 回答