Comment by timo.taskinen:
= Minor inconsistency in Upgrade procedure =
== Environment ==
* Red Hat Enterprise Linux 5.3 X86
* RHEL's own Python-2.4.3-24.el5.
== Steps how to reproduce ==
The [Installation] document tells how to update:
{{{
python install.py reinstall
}}}
This doesn't work though:
{{{
/tmp/robotframework-2.1.2 $ sudo python setup.py reinstall
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: invalid command 'reinstall'
}}}
== Possible fix ==
Give *install* argument to _setup.py_ script instead of *reinstall*.
{{{
/tmp/robotframework-2.1.2 $ sudo python setup.py install
}}}
== Fix confirmation ==
{{{
$ pybot --version
Robot Framework 2.1.2 (Python 2.4.3 on linux2)
}}}
For more information:
http://code.google.com/p/robotframework/wiki/Installation