|
Revision 194, 1.3 kB
(checked in by anonymous, 1 year ago)
|
<a class="closed ticket" href="http://www.google.com" title="Google!">#123</a> test
|
| Line | |
|---|
| 1 |
Cheesecake can be installed in two ways: either via downloading a |
|---|
| 2 |
Cheesecake package and installing it yourself, or using easy_install. |
|---|
| 3 |
|
|---|
| 4 |
============ |
|---|
| 5 |
Requirements |
|---|
| 6 |
============ |
|---|
| 7 |
|
|---|
| 8 |
To make Cheesecake score maximally reliable make sure you have |
|---|
| 9 |
both `pylint <http://www.logilab.org/projects/pylint>`_ and |
|---|
| 10 |
`setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_ |
|---|
| 11 |
installed. |
|---|
| 12 |
|
|---|
| 13 |
=================== |
|---|
| 14 |
Manual installation |
|---|
| 15 |
=================== |
|---|
| 16 |
|
|---|
| 17 |
If you have downloaded a Cheesecake package, follow this steps: |
|---|
| 18 |
|
|---|
| 19 |
1) Unpack it:: |
|---|
| 20 |
|
|---|
| 21 |
tar zxf cheesecake-0.6.tar.gz |
|---|
| 22 |
|
|---|
| 23 |
2) Change to the cheesecake directory:: |
|---|
| 24 |
|
|---|
| 25 |
cd cheesecake-0.6/ |
|---|
| 26 |
|
|---|
| 27 |
3) Run setup.py that will install Cheesecake automatically. This step |
|---|
| 28 |
need to be run as root:: |
|---|
| 29 |
|
|---|
| 30 |
python setup.py install |
|---|
| 31 |
|
|---|
| 32 |
================== |
|---|
| 33 |
Using easy_install |
|---|
| 34 |
================== |
|---|
| 35 |
|
|---|
| 36 |
If you have `easy_install <http://peak.telecommunity.com/DevCenter/EasyInstall>`_ |
|---|
| 37 |
on your system, installing Cheesecake is as simple as running:: |
|---|
| 38 |
|
|---|
| 39 |
easy_install cheesecake |
|---|
| 40 |
|
|---|
| 41 |
Note: if you already have an old version of Cheesecake installed, easy_install |
|---|
| 42 |
will not automatically download the latest version. You can ask for a particular |
|---|
| 43 |
version by running for example:: |
|---|
| 44 |
|
|---|
| 45 |
easy_install Cheesecake==0.6 |
|---|
| 46 |
|
|---|
| 47 |
If you're feeling adventurous you may install development version:: |
|---|
| 48 |
|
|---|
| 49 |
easy_install Cheesecake==dev |
|---|