2

我正在尝试使用 Google CLI(例如'google calendar "...")它曾经运行不佳,现在因错误诊断而失败。搜索“谷歌日历”实际上没有搜索“Evolution 电子邮件”那么无用。

我希望人们在命名程序时会考虑可搜索性。/咆哮

是否有可以发布问题的论坛或新闻组?

如果这里有专家,在我打开浏览器并授权后,程序会产生:

Traceback (most recent call last):
  File "/usr/bin/google", line 839, in <module>
    main()
  File "/usr/bin/google", line 825, in main
    run_once(options, args)
  File "/usr/bin/google", line 605, in run_once
    authenticated = authenticate(auth_manager, options, config, section_header)
  File "/usr/bin/google", line 119, in authenticate
    valid_token = auth_manager.retrieve_access_token(display_name, browser)
  File "/usr/lib/pymodules/python2.6/googlecl/authentication.py", line 180, in retrieve_access_token
    self.client.current_token)
  File "/usr/lib/pymodules/python2.6/googlecl/authentication.py", line 255, in write_access_token
    with open(self.tokens_path, 'wb') as tokens_file:
IOError: [Errno 2] No such file or directory: '/home/hbarta/.local/share/googlecl/access_tok_crbmwweb'

非常感谢,汉克

4

1 回答 1

2

修复方法是创建缺少的目录:mkdir ~/.local/share/googlecl

Google CL 的官方网站是http://code.google.com/p/googlecl/ - 您提到的问题在此处进行了描述和跟踪

于 2011-03-06T10:00:53.997 回答