diff options
| author | Chris McDonough <chrism@plope.com> | 2013-03-20 13:25:48 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-03-20 13:25:48 -0700 |
| commit | 2ca9bde9d2862655ddee276cd14a375e6a5adec6 (patch) | |
| tree | 4cb7479b14e784cda92ceffb9305b673071310e8 /docs/tutorials/wiki2 | |
| parent | 2f7aa7c6a7740f58744d51bdeaaf25a3e037d32c (diff) | |
| parent | c31a81c10470bd0c11f49b5b2ba86684bf566997 (diff) | |
| download | pyramid-2ca9bde9d2862655ddee276cd14a375e6a5adec6.tar.gz pyramid-2ca9bde9d2862655ddee276cd14a375e6a5adec6.tar.bz2 pyramid-2ca9bde9d2862655ddee276cd14a375e6a5adec6.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/tutorials/wiki2')
| -rw-r--r-- | docs/tutorials/wiki2/installation.rst | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst index 64e069e6f..8c4149bfc 100644 --- a/docs/tutorials/wiki2/installation.rst +++ b/docs/tutorials/wiki2/installation.rst @@ -2,13 +2,23 @@ Installation ============ -Preparation -=========== +Before You Begin +================ + +Installation Requirements +------------------------- Follow the steps in :ref:`installing_chapter`, but name the virtualenv -directory ``pyramidtut``. +directory ``pyramidtut``. Following these steps will ensure you have met the +following requirements: -Preparation, UNIX +* Python interpreter is installed on your operating system +* :term:`setuptools` or :term:`distribute` is installed +* :term:`virtualenv` is installed +* a virtual Python environment named ``pyramidtut`` has been created +* Pyramid is installed + +UNIX Requirements ----------------- #. Install SQLite3 and its development packages if you don't already @@ -25,8 +35,7 @@ Preparation, UNIX $ cd pyramidtut - -Preparation, Windows +Windows Requirements -------------------- #. Switch to the ``pyramidtut`` directory: @@ -66,11 +75,11 @@ On Windows: startup problems, try putting both the virtualenv and the project into directories that do not contain spaces in their paths. -Pcreate is a script that comes with Pyramid that helps by creating and organizing files -needed as part of a Pyramid project. By passing in `alchemy` was are asking the script to -create the files needed to use SQLAlchemy. By passing in our app name `tutorial` it goes through and +`pcreate` is a script that comes with Pyramid that helps by creating and organizing files +needed as part of a Pyramid project. By passing in `alchemy`, we are asking the script to +create the files needed to use SQLAlchemy. By passing in our app name `tutorial`, the script places that application name in all the different files required. For example, the ``initialize_tutorial_db`` -that is in the ``pyramidtut/bin`` directory that we use later in this tutorial was created by `pcreate` +that is in the ``pyramidtut/bin`` directory was created by `pcreate`. |
