= Indico v0.97.1 = If you need a detailed installation process, please read [wiki:Admin/Installation here]. == `easy_install` == From this version one can install indico from command line as easy as this: {{{ easy_install cds-indico }}} == Download == If you prefer to download the egg or tarball to install manually: * [[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.7.egg|Egg]] for Python 2.7 ([[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.7.egg.md5|MD5]]) * [[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.6.egg|Egg]] for Python 2.6 ([[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.6.egg.md5|MD5]]) * [[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.5.egg|Egg]] for Python 2.5 ([[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.5.egg.md5|MD5]]) * [[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.4.egg|Egg]] for Python 2.4 ([[http://indico-software.org/download/indico/cds_indico-0.97.1-py2.4.egg.md5|MD5]]) * [[http://indico-software.org/download/indico/cds-indico-0.97.1.tar.gz|Tarball]] ([[http://indico-software.org/download/indico/cds-indico-0.97.1.tar.gz.md5|MD5]]) == Upgrading == === from v0.97b or Git Repo === The following should be enough: {{{ $ easy_install cds-indico $ indico_initial_setup --existing-config=/opt/indico/etc/indico.conf #replace with your path to your indico.conf # restart apache /path/to/httpd restart }}} The following command will also be required, if you're upgrading from v0.97b or an old Git version: {{{ python -c "from MaKaC.common.db import DBMgr; \ DBMgr.getInstance().startRequest(); from MaKaC.modules.base import ModulesHolder; \ del ModulesHolder()._getIdx()['upcoming_events']; DBMgr.getInstance().endRequest()" }}} ''This will cause the configuration of your '''upcoming events''' list to be reset, so, if you had one set (if you don't know what it is, you probably haven't), you'll have to reconfigure it''. Finally, when you first open Indico, you should immediately go to the administration page, then `Plugins` and click `Reload All Manually`. This will take into account the new plugin settings. === from 0.96.2 === Since the new version comes with more indexes, '''after installing 0.97xx''' you will have to run the scripts: {{{ /indico_home_directory/bin/maintenance/indexes/reindexcategorynameindex.py /indico_home_directory/bin/maintenance/indexes/reindexcategorydateindex.py }}} === from older versions === Check the instructions [wiki:Admin/InstallationOlder here].