I'm trying to configure the gsutil command line tool for Google's Storage API but it doesn't seem to like it:

ahmeds:~ ahmed$ gsutil config
CommandException: OAuth2 is only supported when running under Python 2.6 or later
(unless additional dependencies are installed, see README for details);
you are running Python 2.7.2 (default, Nov 25 2011, 23:36:16) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)].
Use 'gsutil config -a' to create a config with Developer Key authentication credentials.

What could I be doing wrong? Do I need to reinstall Python?

link|improve this question

64% accept rate
feedback

3 Answers

Did you try to: "Use 'gsutil config -a' to create a config with Developer Key authentication credentials" As suggested?

link|improve this answer
Yep, I then get CommandException: /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-p‌​ackages/gslib/VERSION not found. Did you install the complete gsutil software after the gsutil "update" command was implemented? which is as magical. – Ahmed Nuaman Jan 10 at 13:08
try to search where gsutils is putted or try to install gsutil again – gunzapper Jan 10 at 13:12
feedback

I read the istructions and I tryied and in my case it's all right. I think the you forget to set the enviroment variable PATH or to restart the terminal emulator after that. Please let me know the output of $echo $PATH

link|improve this answer
feedback

Gsutil looks for its dependencies in the same directory in which it was installed (all dependencies come bundled in the gsutil installation package). Knowing that, this line looks suspicious:

/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/gslib/VERSION not found.

because it indicates an attempt to find the VERSION file from the python site-packages tree, which is at odds with the logic noted above. It sounds to me like you may have an improperly installed gsutil package. I'd suggest re-installing from scratch. If, after re-installing, you are able to reproduce this problem, please post a brief summary of the installation steps you followed so we can try to provide additional assistance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.