summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-05-16 16:56:21 -0700
committerSteve Piercy <web@stevepiercy.com>2015-05-16 16:56:21 -0700
commitd43ebd35f288edddb6df9bef3d671735e1dfb124 (patch)
treec5a11fe6d7b908b6557f1799516ead3355c56ef6 /docs/quick_tutorial
parent119725e9966e4a8942d419c24c6089ffe7b6c4a6 (diff)
parent0d4d7cb81ae162cafe21546b1ae1df8f33b4b8af (diff)
downloadpyramid-d43ebd35f288edddb6df9bef3d671735e1dfb124.tar.gz
pyramid-d43ebd35f288edddb6df9bef3d671735e1dfb124.tar.bz2
pyramid-d43ebd35f288edddb6df9bef3d671735e1dfb124.zip
Merge pull request #1682 from stevepiercy/master
replace image with ASCII tree diagram
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/requirements.rst26
1 files changed, 17 insertions, 9 deletions
diff --git a/docs/quick_tutorial/requirements.rst b/docs/quick_tutorial/requirements.rst
index 6628c4f17..a737ede0e 100644
--- a/docs/quick_tutorial/requirements.rst
+++ b/docs/quick_tutorial/requirements.rst
@@ -82,13 +82,21 @@ Create a project directory structure
We will arrive at a directory structure of
``workspace->project->package``, with our workspace named
-``quick_tutorial``. The following diagram shows how this is structured
-and where our virtual environment will reside:
-
-.. figure:: ../_static/directory_structure_pyramid.png
- :alt: Final directory structure
-
- Final directory structure.
+``quick_tutorial``. The following tree diagram shows how this will be
+structured and where our virtual environment will reside as we proceed through
+the tutorial:
+
+.. code-block:: text
+
+ └── ~
+ └── projects
+ └── quick_tutorial
+ ├── env
+ └── step_one
+ ├── intro
+ │ ├── __init__.py
+ │ └── app.py
+ └── setup.py
For Linux, the commands to do so are as follows:
@@ -132,11 +140,11 @@ environment. We set an environment variable to save typing later.
.. code-block:: bash
# Mac and Linux
- $ export VENV=~/projects/quick_tutorial/env33/
+ $ export VENV=~/projects/quick_tutorial/env
# Windows
# TODO: This command does not work
- c:\> set VENV=c:\projects\quick_tutorial\env33
+ c:\> set VENV=c:\projects\quick_tutorial\env
.. _create-a-virtual-environment: