1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Installation
============
Requirements
------------
DEAP is compatible with Python 2.7 and 3.4 or higher. The computation distribution
requires SCOOP_. CMA-ES requires Numpy_, and we recommend matplotlib_ for
visualization of results as it is fully compatible with DEAP's API.
.. _SCOOP: http://www.pyscoop.org/
.. _Numpy: http://www.numpy.org/
.. _matplotlib: http://www.matplotlib.org/
Install DEAP
------------
We encourage you to use easy_install_ or pip_ to install DEAP on your system.
Linux package managers like apt-get, yum, etc. usually provide an outdated
version. ::
easy_install deap
or ::
pip install deap
If you wish to build from sources, download_ or clone_ the repository and type::
python setup.py install
.. _download: https://pypi.python.org/pypi/deap/
.. _clone: https://github.com/DEAP/deap.git
.. _easy_install: http://pythonhosted.org/distribute/easy_install.html
.. _pip: http://www.pip-installer.org/en/latest/
|