diff options
| author | Tres Seaver <tseaver@palladion.com> | 2013-02-04 12:21:39 -0800 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2013-02-04 12:21:39 -0800 |
| commit | 78e99d1fc6b30c316f55ca4a00a859af5742307b (patch) | |
| tree | 967437e0f097aa06903aa6847f4fbc0731aba77e /docs | |
| parent | 3512804a957037c3d1fbb26089932e0d8c296689 (diff) | |
| parent | bd070e77f4183a34507fe6f19604751cb78e3e8c (diff) | |
| download | pyramid-78e99d1fc6b30c316f55ca4a00a859af5742307b.tar.gz pyramid-78e99d1fc6b30c316f55ca4a00a859af5742307b.tar.bz2 pyramid-78e99d1fc6b30c316f55ca4a00a859af5742307b.zip | |
Merge pull request #845 from tshepang/clean
unuglify Unix Python installation instructions
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/install.rst | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/docs/narr/install.rst b/docs/narr/install.rst index 91e1cae6f..b092f73bc 100644 --- a/docs/narr/install.rst +++ b/docs/narr/install.rst @@ -88,17 +88,15 @@ using the following commands: .. code-block:: text - [chrism@vitaminf ~]$ cd ~ - [chrism@vitaminf ~]$ mkdir tmp - [chrism@vitaminf ~]$ mkdir opt - [chrism@vitaminf ~]$ cd tmp - [chrism@vitaminf tmp]$ wget \ - http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz - [chrism@vitaminf tmp]$ tar xvzf Python-2.7.3.tgz - [chrism@vitaminf tmp]$ cd Python-2.7.3 - [chrism@vitaminf Python-2.7.3]$ ./configure \ - --prefix=$HOME/opt/Python-2.7.3 - [chrism@vitaminf Python-2.7.3]$ make; make install + $ cd ~ + $ mkdir tmp + $ mkdir opt + $ cd tmp + $ wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz + $ tar xvzf Python-2.7.3.tgz + $ cd Python-2.7.3 + $ ./configure --prefix=$HOME/opt/Python-2.7.3 + $ make && make install Once these steps are performed, the Python interpreter will be invokable via ``$HOME/opt/Python-2.7.3/bin/python`` from a shell |
