Revision b6a99832 docs/installation.rst

b/docs/installation.rst
162 162
Requirements
163 163
^^^^^^^^^^^^
164 164

  
165
* Python 2.7 or better (Official versions `here <http://www.python.org/getit>`_)
165
* Python 2.7 or better (`Official versions <http://www.python.org/getit>`_)
166 166

  
167 167
* Git (download `windows version <http://git-scm.com/download/win>`_)
168 168

  
169
* Setuptools (Official versions and workarrounds `here <http://pypi.python.org/pypi/setuptools>`_)
169
* Setuptools (`Official versions and workarounds <http://pypi.python.org/pypi/setuptools>`_)
170 170

  
171 171
Installation from source
172 172
^^^^^^^^^^^^^^^^^^^^^^^^
......
185 185

  
186 186
* Select **System** from the Control Panel, select the **Advanced** tab, the **Environment Variables** button and then find the **PATH** (user or system) and **edit**
187 187

  
188
* Without removing existing values, append the following to PATH:
188
* Without removing existing values, append the following to PATH::
189 189

  
190 190
    C:\Python;C:\Python\Scripts
191 191

  
192
    .. note:: Path values are separated by a semicolons
192
.. note:: Path values are separated by semicolons
193 193

  
194
    .. warning:: C:\Python should be replaced with the actual python path in the system, e.g. C:\Python27
194
.. warning:: C:\\Python should be replaced with the actual python path in the system, e.g. C:\\Python27
195 195

  
196 196
Install setuptools
197 197
""""""""""""""""""
198 198

  
199
According to the corresponding `python.org page <http://pypi.python.org/pypi/setuptools>`_, the setuptools installer doesn't currently work on 64bit machines.
199
According to the corresponding `python org page <http://pypi.python.org/pypi/setuptools>`_, the setuptools installer doesn't currently work on 64bit machines.
200 200

  
201 201
* Users with 32-bit operating systems should download and run the graphic installer
202 202

  
203
* Users with 64-bit machines should download the `ez_setup.py <http://peak.telecommunity.com/dist/ez_setup.py>`_ script and install it from a command shell. In the following, the script is downloaded at C:\Downloads::
203
* Users with 64-bit machines should download the `ez_setup.py <http://peak.telecommunity.com/dist/ez_setup.py>`_ script and install it from a command shell. In the following example, the script was downloaded at C:\\Downloads::
204 204

  
205 205
    C:\> cd Downloads
206 206
    C:\Downloads\> python ez_setup.py
......
211 211
Install GIT
212 212
"""""""""""
213 213

  
214
Download GIT from `here <http://git-scm.com/download/win>`_ and run the graphic installer. During the installation, users will be able to modify some installation options. The present guide is tested with the default selections.
214
`Download GIT <http://git-scm.com/download/win>`_ and run the graphic installer. During the installation, users will be able to modify some installation options. The present guide is tested with the default selections.
215 215

  
216 216
After the installation is completed, a GIT standalone shell will be installed (a desktop shortcut is created, by default). Users are advised to run kamaki through this shell.
217 217

  
......
220 220

  
221 221
* Run the GIT standalone shell
222 222

  
223
* Enter the location where kamaki will be installed, e.g. *C\:*
223
* Enter the location where kamaki will be installed, e.g. **C:\\**
224 224

  
225
.. code-block:: console
225
    .. code-block:: console
226 226

  
227
    $ cd /c/
227
        $ cd /c/
228 228

  
229 229
* Download source from GRNET repository
230 230

  
231
.. code-block:: console
231
    .. code-block:: console
232 232

  
233
    $ git clone http://code.grnet.gr/git/kamaki
234
    Cloning into 'kamaki'...
235
    Receiving objects: ...
236
    Resolving Deltas: ...
233
        $ git clone http://code.grnet.gr/git/kamaki
234
        Cloning into 'kamaki'...
235
        Receiving objects: ...
236
        Resolving Deltas: ...
237 237

  
238 238
* Enter source and install kamaki
239 239

  
240
.. code-block:: console
240
    .. code-block:: console
241 241

  
242
    $ cd kamaki
243
    $ python setup.py install
244
    running install
245
    ...
246
    Finished processing dependencies for kamaki==0.6.2
242
        $ cd kamaki
243
        $ python setup.py install
244
        running install
245
        ...
246
        Finished processing dependencies for kamaki==0.6.2
247 247

  
248 248
.. warning:: kamaki version should be 0.6.2 or better, otherwise it will not function. Users can test that by running::
249 249

  

Also available in: Unified diff