Nagare upgrade
==============

1. Virtual environment installation
-----------------------------------

If the Nagare installation you want to upgrade is located into a virtual
environment, execute the followings commands:

on Linux:

.. code-block:: sh

    <NAGARE_HOME>/bin/easy_install -U 'nagare[full]'

on Windows:

.. code-block:: cmd

    <NAGARE_HOME>\Scripts\easy_install.exe -U nagare[full]

2. System-wide installation
---------------------------

If the Nagare installation was installed system-wide, execute:

on Linux:

.. code-block:: sh

    <STACKLESS_HOME>/bin/easy_install -U 'nagare[full]'

on Windows:

.. code-block:: cmd

    <STACKLESS_HOME>\Scripts\easy_install.exe -U nagare[full]

3. Developer installation
-------------------------

If your Nagare installation was directly a checkout from the Mercurial repository,
execute:

.. code-block:: sh

    cd core
    hg pull
    hg update
    <NAGARE_HOME>/bin/easy_install setup.py develop

.. wikiname: NagareUpgrade
