Changeset 3837
- Timestamp:
- 12/18/07 14:40:10 (1 year ago)
- Files:
-
- trunk/INSTALL.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/INSTALL.txt
r3675 r3837 2 2 =============================== 3 3 4 .. Note:: At current stage TurboGears2 is availabletesting by developers4 .. note:: At current stage TurboGears2 is available for testing by developers 5 5 who are willing to use Subversion to track the latest changes. 6 6 7 7 8 Requirements 8 9 ------------ 10 9 11 While in Development there are several dependencies: 10 12 11 * Python, version >= 2.4. 12 + Please keep in mind, that for RPM-based systems you will also need 13 python-devel and python-xml packages. 14 + You may need python-dev and python-setuptools in ubuntu 15 * Pylons Trunk checkout. 16 We require the development version is preferable since there are important 17 controller features which we need, as well as a template rendering bugfix 18 which is nessisary for TurboJSON to work properly. 13 * Python, version >= 2.4. 19 14 20 Installing TurboGears2 15 + Please keep in mind, that for RPM-based systems you will also need 16 ``python-devel`` and ``python-xml`` packages. 17 18 + You may need ``python-dev`` and ``python-setuptools`` in ubuntu. 19 20 * Pylons trunk checkout. 21 22 We require the development version, since there are important controller 23 features which we need, as well as a template rendering bugfix 24 which is necesssary for TurboJSON to work properly. 25 26 27 Installing TurboGears 2 21 28 ----------------------- 22 The command: 29 30 The command:: 23 31 24 32 $ python ./setup.py install 25 33 26 will byte-compile the python source code and install it in the27 site-packages directory of your python installation.34 will byte-compile the Python source code and install it in the 35 ``site-packages`` directory of your Python installation. 28 36 29 If you don't already have the pylons and turbogears source, you can37 If you don't already have the Pylons and TurboGears source, you can 30 38 get them from their repository:: 31 39 32 $ easy_install -U mercurial 40 Install mercurial via easy_install [1]_:: 41 42 $ easy_install -U Mercurial 43 44 .. [1] Or go to http://www.selenic.com/mercurial/wiki/index.cgi/Download and 45 download & install a binary package for your system. 46 47 Check out the Pylons and TurboGears 2 source:: 48 33 49 $ hg clone http://pylonshq.com/hg/pylons-dev pylons 34 50 $ svn co http://svn.turbogears.org/trunk tg2 … … 38 54 $ python ./pylons/setup.py develop 39 55 $ python ./tg2/setup.py develop 56 40 57 41 58 Update the source … … 48 65 $ python setup.py develop 49 66 67 50 68 Creating a Quickstart Project 51 69 ------------------------------ 52 70 53 TurboGears 2 is built on Pylons and sharepylons' "paster" commands.71 TurboGears 2 is built on Pylons and shares pylons' "paster" commands. 54 72 Enter command:: 55 73