Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: third_party/gsutil/README

Issue 12317103: Added gsutil to depot tools (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/gsutil/MANIFEST.in ('k') | third_party/gsutil/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/gsutil/README
diff --git a/third_party/gsutil/README b/third_party/gsutil/README
new file mode 100644
index 0000000000000000000000000000000000000000..709dc9a5a7b128e0555e2249b6c85b50dadf01cd
--- /dev/null
+++ b/third_party/gsutil/README
@@ -0,0 +1,38 @@
+This directory contains the Python command line tool gsutil, which Google
+has released as open source, to demonstrate the Google Storage API and to
+provide a tool for manipulating data in the system.
+
+Prerequisites:
+
+Gsutil requires Python 2.6 or later.
+
+To install gsutil take the following steps:
+
+1. Pick a place where you want to install the software. You can
+ install the code wherever you prefer; for brevity the instructions below
+ assume you want to install in $HOME/gsutil.
+
+2. To install gsutil on Linux/Unix or MacOS, open a shell window, change
+ directories to where you downloaded the gsutil.tar.gz file, and do this:
+ % tar xfz gsutil.tar.gz -C $HOME
+
+ Then add the following line to your $HOME/.bashrc shell initialization
+ file:
+ export PATH=${PATH}:$HOME/gsutil
+
+ The next time you start a shell you should be able to run gsutil from
+ the command line.
+
+3. To install gsutil on Windows, install cygwin (http://www.cygwin.com/),
+ with at least version 2.6.5 of Python. Once you have that, start a shell
+ and follow the Linux instructions above for unpacking and installing gsutil.
+
+4. The first time you try to run gsutil, it will detect that you have no
+ configuration file containing your credentials, interactively prompt you,
+ and create the file.
+
+ After this you can use the tool. Running gsutil with with no arguments
+ will print a help summary.
+
+For more information on installing and using gsutil, see
+<http://code.google.com/apis/storage/docs/gsutil.html>.
« no previous file with comments | « third_party/gsutil/MANIFEST.in ('k') | third_party/gsutil/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698