salimoha / googlecl

Automatically exported from code.google.com/p/googlecl
0 stars 0 forks source link

No module named gdata.docs.service #389

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. google docs edit --title "Shopping list"
2.
3.

What is the expected output? What do you see instead?

Traceback (most recent call last):
  File "/usr/local/bin/google", line 849, in <module>
    main()
  File "/usr/local/bin/google", line 835, in main
    run_once(options, args)
  File "/usr/local/bin/google", line 540, in run_once
    options.config)
  File "/usr/local/bin/google", line 375, in import_service
    service_module = import_at_runtime('googlecl.' + service + '.service')
  File "/usr/local/bin/google", line 332, in import_at_runtime
    return __import__(module, globals(), fromlist=['0'])
  File "/usr/local/lib/python2.6/dist-packages/googlecl/docs/service.py", line 32, in <module>
    import gdata.docs.service
ImportError: No module named gdata.docs.service

What version of the product are you using? On what operating system? What
version of gdata-python-client (aka python-gdata)?

googlecl-0.9.13
Limux Mint

Please provide any additional information below.

Original issue reported on code.google.com by rc...@pilot.guhsd.net on 15 Apr 2011 at 9:55

GoogleCodeExporter commented 9 years ago
You either (1) do not have gdata installed, or (2) the gdata location isn't 
known by Python.

To solve (1), follow the instructions given above on installing newer versions 
of gdata.

To solve (2), if you know the gdata library is installed, you can set the 
PYTHONPATH environment variable to include the library's location.

I've also added this info to the FAQ / Troubleshooting. Respond to this issue 
if the instructions aren't clear or you have further ImportError problems.

Original comment by tom.h.mi...@gmail.com on 30 Apr 2011 at 12:01