Download & Install
==================

Here you'll find all the necessary explanations for installing pyqode.python.


Requirements
------------
pyqode.python depends on the following packages (that will be automatically
installed when using *pip install* or *setup.py install*):

    - pyqode.core
    - jedi
    - pep8
    - frosted (an alternative to pyflakes)

Supported platforms
-------------------

pyqode.python runs on the same platforms as pyqode.core:

    - Windows
    - GNU/Linux
    - Mac OSX (>= 10.9)


Using pip (the recommended way)
-------------------------------

pyqode.python can be installed from *pypi* using *pip*:

.. code-block:: bash

    $ pip install pyqode.python

From source
-----------

You can download the `source archive`_ from the `github repository`_

Then you can install the package by opening a terminal an typing the following commands:

.. code-block:: bash

    $ cd path/to/source/
    $ python setup.py install

Alternatively you can clone the repository using git:

.. code-block:: bash

    $ git clone git@github.com:pyQode/pyqode.python.git
    $ cd pyqode.python
    $ python setup.py install

.. _source archive: https://github.com/pyQode/pyqode.python/archive/master.zip
.. _github repository: https://github.com/pyQode/pyqode.python
