1. Installation¶
1.1. On Fedora¶
RPM packages are available for the Fedora distribution on https://copr.fedorainfracloud.org/coprs/fabricesalvaire/code-review
Run these commands to enable the copr repository and install the last release:
dnf copr enable fabricesalvaire/code-review
dnf install CodeReview
1.2. From PyPi Repository¶
CodeReview is available on PyPI repository: https://pypi.python.org/pypi/CodeReview
Run this command to install the last release:
pip install CodeReview
Notice, it requires Python 3 and a C compiler.
1.3. From source¶
CodeReview source code is hosted at https://github.com/FabriceSalvaire/CodeReview
Clone the Git repository using this command:
git clone git@github.com:FabriceSalvaire/CodeReview.git
Then build and install CodeReview using these commands:
python setup.py build
python setup.py install