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.

pip install BatchEval

or

git clone https://github.com/STOmics/BatchEval.git
cd BatchEval
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.

# create a new environment called BatchEval
conda create -n BatchEval python=3.8

# activate your environment
conda activate BatchEval

# install package
pip install BatchEval