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

Side by Side Diff: third_party/gsutil/README

Issue 12042069: Scripts to download files from google storage based on sha1 sums (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Review fixes, updated gsutil Created 7 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 This directory contains the Python command line tool gsutil, which Google
M-A Ruel 2013/02/25 15:15:06 Add README.chromium with the standard template. Yo
2 has released as open source, to demonstrate the Google Storage API and to
3 provide a tool for manipulating data in the system.
4
5 Prerequisites:
6
7 Gsutil requires Python 2.6 or later.
8
9 To install gsutil take the following steps:
10
11 1. Pick a place where you want to install the software. You can
12 install the code wherever you prefer; for brevity the instructions below
13 assume you want to install in $HOME/gsutil.
14
15 2. To install gsutil on Linux/Unix or MacOS, open a shell window, change
16 directories to where you downloaded the gsutil.tar.gz file, and do this:
17 % tar xfz gsutil.tar.gz -C $HOME
18
19 Then add the following line to your $HOME/.bashrc shell initialization
20 file:
21 export PATH=${PATH}:$HOME/gsutil
22
23 The next time you start a shell you should be able to run gsutil from
24 the command line.
25
26 3. To install gsutil on Windows, install cygwin (http://www.cygwin.com/),
27 with at least version 2.6.5 of Python. Once you have that, start a shell
28 and follow the Linux instructions above for unpacking and installing gsutil.
29
30 4. The first time you try to run gsutil, it will detect that you have no
31 configuration file containing your credentials, interactively prompt you,
32 and create the file.
33
34 After this you can use the tool. Running gsutil with with no arguments
35 will print a help summary.
36
37 For more information on installing and using gsutil, see
38 <http://code.google.com/apis/storage/docs/gsutil.html>.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698