Installation

Installation using Conda

The easiest way to install HARDy is using conda:

conda install -c pozzorg hardy

Installation using Git

HARDy can also be installed using Git. Currently version 1.0 is the most stable version. To install version 1.0, follow the following steps:

  • In your terminal, run:

    git clone https://github.com/EISy-as-Py/hardy.git
    
  • Change the directory to hardy root directory, by running:

    cd hardy
    
  • Run:

    git checkout v1.0
    
  • Run:

    python setup.py install
    

To check installation run the following command in your terminal:

python -c "import hardy"

Installation using pip

HARDy is also configured to be installed using pip. Currently version 1.0 is the most stable version. To install version 1.0, run the following commands in the terminal:

git clone https://github.com/EISy-as-Py/hardy.git
cd HARDy
git checkout v1.0
pip install .

To check installation run the following command in your terminal:

python -c "import hardy"