Installation ============ We provide two way to install the package of `BatchEval`. Please note that the current `BatchEval` version offers full support of Linux operating system. Further version for other operating systems would be released soon. 1. Python --------- Install through `Pypi `_. .. code-block:: python pip install BatchEval or .. code-block:: python git clone https://github.com/STOmics/BatchEval.git .. code-block:: python cd BatchEval .. code-block:: python python setup.py install 2. Anaconda ----------- For convenience, we suggest using a separate conda environment for running `BatchEval`. Please ensure Anaconda/miniConda is installed. Create conda environment and install `BatchEval` package. .. code-block:: python # create a new environment called BatchEval conda create -n BatchEval python=3.8 # activate your environment conda activate BatchEval # install package pip install BatchEval