view docs/installation.rst @ 669:9bacc4194efa beta

docs update
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 07 Nov 2010 15:19:39 +0100
parents a60cd29ba7e2
children 6e8322c438ca
line wrap: on
line source

.. _installation:

Installation
============

``RhodeCode`` is written entirely in Python, but in order to use it's full
potential there are some third-party requirements. When RhodeCode is used 
together with celery You have to install some kind of message broker,
recommended one is rabbitmq_ to make the async tasks work.

Of course RhodeCode works in sync mode also, then You don't have to install
any third party apps. Celery_ will give You large speed improvement when using
many big repositories. If You plan to use it for 2 or 3 small repositories, it
will work just fine without celery running.
   
After You decide to Run it with celery make sure You run celeryd and
message broker together with the application.   

Requirements for Celery
-----------------------

**Message Broker** 

- preferred is `RabbitMq <http://www.rabbitmq.com/>`_
- possible other is `Redis <http://code.google.com/p/redis/>`_

For installation instructions You can visit: 
http://ask.github.com/celery/getting-started/index.html
It's very nice tutorial how to start celery_ with rabbitmq_

Install from Cheese Shop
------------------------
Rhodecode requires python 2.5 or 2.6 and will not run on older or newer
versions of python. Python 2.7 is untested and thus not supported.

Easiest way to install ``rhodecode`` is to run::

 easy_install rhodecode

Or::

 pip install rhodecode

If you prefer to install manually simply grab latest release from
http://pypi.python.org/pypi/rhodecode, decompres archive and run::

   python setup.py install


Step by step installation example
---------------------------------


- Assuming You have installed virtualenv_ create one using. The `--no-site-packages`
  will make sure non of Your system libs are linked with this virtualenv_  

::

 virtualenv --no-site-packages /var/www/rhodecode-venv

- this will install new virtualenv_ into `/var/www/rhodecode-venv`. 
- Activate the virtualenv_ by running 

::

  source activate /var/www/rhodecode-venv/bin/activate
     
- Make a folder for rhodecode somewhere on the filesystem for example 

::

  mkdir /var/www/rhodecode
  
    
- Run this command to install rhodecode

::

  easy_install rhodecode 

- this will install rhodecode together with pylons
  and all other required python libraries


You can now proceed to :ref:`setup`

.. _virtualenv: http://pypi.python.org/pypi/virtualenv  
.. _python: http://www.python.org/
.. _mercurial: http://mercurial.selenic.com/
.. _celery: http://celeryproject.org/
.. _rabbitmq: http://www.rabbitmq.com/