@@ -27,8 +27,8 @@ using a Git checkout:
2727 as "hack-on-gcloud". E.g.::
2828
2929 $ cd ~
30- $ git clone git@github.com:USERNAME/gcloud-python.git hack-on-gcloud
31- $ cd hack-on-gcloud
30+ $ git clone git@github.com:USERNAME/gcloud-python.git hack-on-gcloud-python
31+ $ cd hack-on-gcloud-python
3232 # Configure remotes such that you can pull changes from the gcloud-python
3333 # repository into your local repository.
3434 $ git remote add upstream https://github.com:GoogleCloudPlatform/gcloud-python
@@ -41,7 +41,7 @@ repo, from which you can submit a pull request.
4141
4242- Create a virtualenv in which to install ``gcloud-python ``::
4343
44- $ cd ~/hack-on-gcloud
44+ $ cd ~/hack-on-gcloud-python
4545 $ virtualenv --python python2.7 env
4646
4747 Note that very old versions of virtualenv (virtualenv versions below, say,
@@ -52,16 +52,16 @@ repo, from which you can submit a pull request.
5252 flag to ``virtualenv``. For example, ``virtualenv --python python2.7``
5353 chooses the Python 2.7 interpreter to be installed.
5454
55- From here on in within these instructions, the ``~/hack-on-gcloud/env``
55+ From here on in within these instructions, the ``~/hack-on-gcloud-python /env``
5656 virtual environment you created above will be referred to as ``$VENV``.
5757 To use the instructions in the steps that follow literally, use the
58- ``export VENV=~/hack-on-gcloud/env`` command.
58+ ``export VENV=~/hack-on-gcloud-python /env`` command.
5959
6060- Install ``gcloud-python `` from the checkout into the virtualenv using
6161 ``setup.py develop ``. Running ``setup.py develop `` *must * be done while
6262 the current working directory is the ``gcloud-python `` checkout directory::
6363
64- $ cd ~/hack-on-gcloud
64+ $ cd ~/hack-on-gcloud-python
6565 $ $VENV/bin/python setup.py develop
6666
6767I'm getting weird errors... Can you help?
@@ -131,7 +131,7 @@ Running Tests
131131 combination. For example::
132132
133133 $ sudo /usr/bin/pip install tox
134- $ cd ~/hack-on-gcloud/
134+ $ cd ~/hack-on-gcloud-python /
135135 $ /usr/bin/tox
136136
137137Running System Tests
@@ -291,13 +291,13 @@ using to develop ``gcloud-python``):
2912911. After following the steps above in "Using a Development Checkout", install
292292 Sphinx and all development requirements in your virtualenv::
293293
294- $ cd ~/hack-on-gcloud
294+ $ cd ~/hack-on-gcloud-python
295295 $ $VENV/bin/pip install Sphinx
296296
2972972. Change into the ``docs `` directory within your ``gcloud-python `` checkout and
298298 execute the ``make `` command with some flags::
299299
300- $ cd ~/hack-on-gcloud/gcloud-python/docs
300+ $ cd ~/hack-on-gcloud-python /gcloud-python/docs
301301 $ make clean html SPHINXBUILD=$VENV/bin/sphinx-build
302302
303303 The ``SPHINXBUILD=... `` argument tells Sphinx to use the virtualenv Python,
0 commit comments