.. _install: ************ Installation ************ The easiest way to install Elephant is by creating a conda environment, followed by ``pip install elephant``. Below is the explanation of how to proceed with these two steps. .. _prerequisites: Prerequisites ============= Elephant requires `Python `_ 2.7, 3.5, 3.6, 3.7, or 3.8. .. tabs:: .. tab:: (recommended) Conda (Linux/MacOS/Windows) 1. Create your conda environment (e.g., `elephant`): .. code-block:: sh conda create --name elephant python=3.7 numpy scipy tqdm 2. Activate your environment: .. code-block:: sh conda activate elephant .. tab:: Debian/Ubuntu Open a terminal and run: .. code-block:: sh sudo apt-get install python-pip python-numpy python-scipy python-pip python-six python-tqdm Installation ============ .. tabs:: .. tab:: Stable release version The easiest way to install Elephant is via `pip `_: .. code-block:: sh pip install elephant If you want to use advanced features of Elephant, install the package with extras: .. code-block:: sh pip install elephant[extras] To upgrade to a newer release use the ``--upgrade`` flag: .. code-block:: sh pip install --upgrade elephant If you do not have permission to install software systemwide, you can install into your user directory using the ``--user`` flag: .. code-block:: sh pip install --user elephant .. tab:: Development version If you have `Git `_ installed on your system, it is also possible to install the development version of Elephant. 1. Before installing the development version, you may need to uninstall the previously installed version of Elephant: .. code-block:: sh pip uninstall elephant 2. Clone the repository and install the local version: .. code-block:: sh git clone git://github.com/NeuralEnsemble/elephant.git cd elephant .. tabs:: .. tab:: Minimal setup .. code-block:: sh pip install -e . .. tab:: conda (with extras) .. code-block:: sh conda remove -n elephant --all # remove the previous environment conda env create -f requirements/environment.yml conda activate elephant pip install -e . MPI support ----------- Some Elephant modules (ASSET, SPADE, etc.) are parallelized to run with MPI. In order to make use of MPI parallelization, you need to install ``mpi4py`` package: .. tabs:: .. tab:: conda (easiest) .. code-block:: sh conda install -c conda-forge mpi4py .. tab:: pip (Debian/Ubuntu) .. code-block:: sh sudo apt install -y libopenmpi-dev openmpi-bin pip install mpi4py To run a python script that supports MPI parallelization, run in a terminal: .. code-block:: sh mpiexec -n numprocs python -m mpi4py pyfile [arg] ... For more information, refer to `mpi4py `_ documentation. Dependencies ------------ Elephant relies on the following packages (automatically installed when you run ``pip install elephant``): * `quantities `_ - support for physical quantities with units (mV, ms, etc.) * `neo `_ - electrophysiology data manipulations