From d3b07af03b72a4837f03e64074eba60cf0ae8ac9 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Sat, 24 Dec 2022 00:00:40 -0500 Subject: [PATCH] docs: update installation commands `setup.py` has been removed. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 32f778311..c93221ad8 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,15 @@ One can download the source code of dpdata by ```bash git clone https://github.com/deepmodeling/dpdata.git dpdata ``` -then use `setup.py` to install the module +then use `pip` to install the module from source ```bash cd dpdata -python setup.py install +pip install . ``` -`dpdata` can also by install via pip +`dpdata` can also by install via pip without source ```bash -pip3 install dpdata +pip install dpdata ```