============ Installation ============ The most direct way to install Fabric is to obtain the source code and run ``python setup.py install``. This method works for both release and development versions of the code, and requires nothing but a basic Python installation and the `setuptools`_ library. .. note:: If you've obtained the Fabric source via source control and plan on updating your checkout in the future, we highly suggest using ``python setup.py develop`` instead -- it will use symbolic links instead of file copies, ensuring that imports of the library or use of the command-line tool will always refer to your checkout. Dependencies ============ In order to install Fabric, you will need three primary pieces of software: the Python programming language, the setuptools library, and the PyCrypto cryptography library. Please read on for important details on each dependency -- there are a few gotchas. Python ------ Fabric requires `Python `_ version 2.5 or 2.6. Some caveats and notes about other Python versions: * We are not planning on supporting **Python 2.4** given its age and the number of useful tools in Python 2.5 such as context managers and new modules. That said, the actual amount of 2.5-specific functionality is not prohibitively large, and we would link to -- but not support -- a third-party 2.4-compatible fork. (No such fork exists at this time, to our knowledge.) * Fabric has not yet been tested on **Python 3.x** and is thus likely to be incompatible with that line of development. However, we try to be at least somewhat forward-looking (e.g. using ``print()`` instead of ``print``) and will definitely be porting to 3.x in the future once our dependencies and the rest of the ecosystem does so as well. setuptools ---------- `Setuptools`_ comes with some Python installations by default; if yours doesn't, you'll need to grab it. In such situations it's typically packaged as ``python-setuptools``, ``py25-setuptools`` or similar. Fabric may drop its setuptools dependency in the future, or include alternative support for the `Distribute`_ project, but for now setuptools is required for installation. .. _setuptools: http://pypi.python.org/pypi/setuptools .. _Distribute: http://pypi.python.org/pypi/distribute PyCrypto -------- `PyCrypto `_ is a dependency of Paramiko (which Fabric uses internally for SSH support), providing the low-level (C-based) encryption algorithms used to run SSH. You will need version 1.9 or newer, and may install PyCrypto from ``easy_install`` or ``pip`` without worry. However, unless you are installing from a precompiled source such as a Debian apt repository or RedHat RPM, you will need the ability to build Python C-based modules from source -- read on. Users on **Unix-based platforms** such as Ubuntu or Mac OS X will need the traditional C build toolchain installed (e.g. Developer Tools / XCode Tools on the Mac, or the ``build-essential`` package on Ubuntu or Debian Linux -- basically, anything with ``gcc``, ``make`` and so forth) as well as the Python development libraries, often named ``python-dev`` or similar. For **Windows** users we recommend either installing a C development environment such as `Cygwin `_ or obtaining a precompiled Win32 PyCrypto package from `voidspace's Python modules page `_. Development dependencies ------------------------ If you are interested in doing development work on Fabric (or even just running the test suite), you may also need to install some or all of the following packages: * `git `_ and `Mercurial`_, in order to obtain some of the other dependencies below; * `Nose `_ >=0.10 * `Coverage `_ >=2.85 * `PyLint `_ >=0.18 * `Fudge `_ >=0.9.2 * `Sphinx `_ >= 0.6.1 .. _Mercurial: http://mercurial.selenic.com/wiki/ Downloads ========= To obtain a tar.gz or zip archive of the Fabric source code, you may visit either of the following locations: * The official downloads are available via `git.fabfile.org `_. Our Git repository viewer provides downloads of all tagged releases. See the "Download" column, next to the "Tag" column in the middle of the front page. * `Our GitHub mirror `_ has downloads of all tagged releases as well -- just click the 'Download' button near the top of the main page. * `Fabric's PyPI page `_ offers manual downloads as well as being the entry point for :ref:`easy-install`. .. _source-code-checkouts: Source code checkouts ===================== The Fabric developers manage the project's source code with the `Git `_ DVCS. To follow Fabric's development via Git instead of downloading official releases, you have the following options: * Clone the canonical Git repository, ``git://fabfile.org/fabric.git`` (note that a Web view of this repository can be found at `git.fabfile.org `_) * Clone the official Github mirror/collaboration repository, ``git://github.com/bitprophet/fabric.git`` * Make your own fork of the Github repository by making a Github account, visiting `GitHub/bitprophet/fabric `_ and clicking the "fork" button. For information on the hows and whys of Fabric development, including which branches may be of interest and how you can help out, please see the :doc:`development` page. .. _easy-install: Easy_install and Pip ==================== Fabric may be installed via either `easy_install `_ or `pip `_. Fabric's source distribution also comes with a ``pip`` requirements file called ``requirements.txt``, containing the various development requirements listed above (note, that's *development* requirements -- not necessary for simply using the software.) At time of writing, some of the listed third-party packages don't play well with ``pip``, so we aren't officially recommending use of the requirements file just yet.