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