From 8adf06f6aee96b70c939953b1eca8b0646d9a7df Mon Sep 17 00:00:00 2001 From: Angelo Gladding Date: Sun, 24 Jan 2010 09:12:47 +0000 Subject: [PATCH] edit --- installation.md | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/installation.md b/installation.md index d40cf2e9..b83c480f 100644 --- a/installation.md +++ b/installation.md @@ -23,7 +23,8 @@ The easiest way to install `web.py` is using [easy_install](http://peak.telecommunity.com/DevCenter/EasyInstall). Note that you will install the version specified in the [Python Package Index](http://pypi.python.org/pypi/web.py). -
easy_install web.py
+
easy_install web.py
+

From Source

@@ -34,13 +35,15 @@ The easiest way to install `web.py` is using

System-wide

cd web.py-0.33
-sudo python setup.py install
+sudo python setup.py install +

Local

If you need to bundle `web.py` with your application extract the source to a `vendor` folder and create a symlink, normally within your package's root. -
ln -s vendor/web.py-0.33/web web
+
ln -s vendor/web.py-0.33/web web
+

Via GNU/Linux Distribution

@@ -49,21 +52,25 @@ If you need to bundle `web.py` with your application extract the source to a `ve If you are on a Debian-based system you can install `web.py` using `apt-get`. Note that you may not get the latest version as the Ubuntu/Debian release cycles are different from `web.py`. See Debian and Ubuntu package profiles for more information. -
sudo apt-get install python-webpy
+
sudo apt-get install python-webpy
+

Red Hat or Fedora, RHEL, CentOS

If you are on a Red Hat-based system you can install `web.py` using `yum` or `up2date`. Note that CentOS requires the [EPEL](https://fedoraproject.org/wiki/EPEL) repository. -
yum install python-webpy
-
up2date -i python-webpy
+
yum install python-webpy
+
+
up2date -i python-webpy
+

Development Branch

To follow the bleeding edge clone the master branch. -
git clone git://github.com/webpy/webpy.git
+
git clone git://github.com/webpy/webpy.git
+

Verify