Installation
Installation¶
System Requirement¶
There is no requirement for mclUMI, a cross-platform package.
PyPI¶
# create a conda environment
conda create --name mclumi python=3.11
# activate the conda environment
conda activate mclumi
# the latest version
pip install mclumi --upgrade
Conda¶
# create a conda environment
conda create --name mclumi python=3.11
# activate the conda environment
conda activate mclumi
# the latest version
conda install jianfeng_sun::mclumi
Docker¶
docker pull 2003100127/mclumi
Github¶
# create a conda environment
conda create --name mclumi python=3.11
# activate the conda environment
conda activate mclumi
# create a folder
mkdir project
# go to the folder
cd project
# fetch mclUMI repository with the latest version
git clone https://github.com/2003100127/mclumi.git
# enter this repository
cd mclumi
# do the following command
pip install .
# or
python setup.py install