diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-05-16 16:54:56 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-05-16 16:54:56 -0700 |
| commit | 0d4d7cb81ae162cafe21546b1ae1df8f33b4b8af (patch) | |
| tree | c5a11fe6d7b908b6557f1799516ead3355c56ef6 | |
| parent | 109792709bf90eddf85eaaed1743b5cbb1faa34e (diff) | |
| download | pyramid-0d4d7cb81ae162cafe21546b1ae1df8f33b4b8af.tar.gz pyramid-0d4d7cb81ae162cafe21546b1ae1df8f33b4b8af.tar.bz2 pyramid-0d4d7cb81ae162cafe21546b1ae1df8f33b4b8af.zip | |
- replace image with ASCII tree diagram
- make venv name generic without a version to reduce future maintenance
| -rw-r--r-- | docs/_static/directory_structure_generic.png | bin | 11845 -> 0 bytes | |||
| -rw-r--r-- | docs/_static/directory_structure_initial.png | bin | 7752 -> 0 bytes | |||
| -rw-r--r-- | docs/_static/directory_structure_pyramid.png | bin | 16746 -> 0 bytes | |||
| -rw-r--r-- | docs/quick_tutorial/requirements.rst | 26 |
4 files changed, 17 insertions, 9 deletions
diff --git a/docs/_static/directory_structure_generic.png b/docs/_static/directory_structure_generic.png Binary files differdeleted file mode 100644 index c6d1a5b03..000000000 --- a/docs/_static/directory_structure_generic.png +++ /dev/null diff --git a/docs/_static/directory_structure_initial.png b/docs/_static/directory_structure_initial.png Binary files differdeleted file mode 100644 index 000f1bb27..000000000 --- a/docs/_static/directory_structure_initial.png +++ /dev/null diff --git a/docs/_static/directory_structure_pyramid.png b/docs/_static/directory_structure_pyramid.png Binary files differdeleted file mode 100644 index 74edd6533..000000000 --- a/docs/_static/directory_structure_pyramid.png +++ /dev/null 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: |
