diff options
| author | Chris McDonough <chrism@plope.com> | 2013-03-19 13:02:30 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-03-19 13:02:30 -0700 |
| commit | 3fda611d2f9c515ed1e69f613641febceef387f8 (patch) | |
| tree | 830918a0990b2f78f6a487d6ca96946dbf98d2ac /docs | |
| parent | 7a7f1cf023ea2478cbf233a94077f684ac92de3e (diff) | |
| parent | ed214d879cab4f00f5151011279c69ea07da6540 (diff) | |
| download | pyramid-3fda611d2f9c515ed1e69f613641febceef387f8.tar.gz pyramid-3fda611d2f9c515ed1e69f613641febceef387f8.tar.bz2 pyramid-3fda611d2f9c515ed1e69f613641febceef387f8.zip | |
Merge pull request #923 from thesteve0/master
Update to the wiki2 tutorial installation steps
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/install.rst | 2 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/installation.rst | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/docs/narr/install.rst b/docs/narr/install.rst index 04a060ac3..9bc62dc62 100644 --- a/docs/narr/install.rst +++ b/docs/narr/install.rst @@ -269,7 +269,7 @@ you can then create a virtual environment. To do so, invoke the following: .. code-block:: text - $ export $VENV=~/env + $ export VENV=~/env $ virtualenv --no-site-packages $VENV New python executable in /home/foo/env/bin/python Installing setuptools.............done. diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst index 255a60ec2..64e069e6f 100644 --- a/docs/tutorials/wiki2/installation.rst +++ b/docs/tutorials/wiki2/installation.rst @@ -66,6 +66,13 @@ 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 +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` + + .. _installing_project_in_dev_mode: |
