Install

Requirements

edxia requires

Note

The Anaconda distribution might be used to install these dependances.

Installation

Installation with conda

With a valid anaconda distribution installation (anaconda or miniconda), the edxia package can be installed with the requirements using the conda command

conda install -c specmicp edxia

To update a previous installation, the following command can be executed:

conda update -c specmicp edxia

Installation with pip

The edxia package is uploaded to Pypi, the Python Package Index. Therefore it is possible to install the latest version with its requirements very easily in any valid python installation:

pip install edxia

By default, this command attempt a system-wide installation. The package can be installed for the user only:

pip install edxia --user

To update a previous installation, the following command can be executed:

pip install edxia --upgrade

Installation from sources

The package can be installed directly from the sources. The latest version can be dowloaded directly from the git repository:

git clone https://bitbucket.org/specmicp/edxia.git

It can then be installed with the following commands

cd edxia
python setup.py install