Skip to content

Installation

Installation

System Requirement

There is no requirement for PyPropel, a cross-platform package.

PyPI

pypropel homepage on 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

pypropel homepage on Anaconda

# 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

pypropel homepage on Docker

docker pull 2003100127/pypropel

Github

pypropel homepage on 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