From c1e9b63e8507261292c6d2c333dcbfe35d81a159 Mon Sep 17 00:00:00 2001 From: jingqinghe Date: Sat, 9 May 2020 11:39:53 +0800 Subject: [PATCH] add mpc doc --- python/paddle_fl/mpc/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/python/paddle_fl/mpc/README.md b/python/paddle_fl/mpc/README.md index 8d2c5a5..c9def29 100644 --- a/python/paddle_fl/mpc/README.md +++ b/python/paddle_fl/mpc/README.md @@ -79,11 +79,10 @@ pip install paddle_fl Fetch the source code and checkout stable release ```sh -git clone https://repo/site -cd /path/to/paddle_mpc +git clone https://github.com/PaddlePaddle/PaddleFL +cd /path/to/PaddleFL # Checkout stable release -git checkout [stable-release] mkdir build && cd build ``` @@ -102,7 +101,10 @@ Install the package: ```sh make install -cd /path/to/paddle_mpc/python && ${PYTHON_EXECUTABLE} setup.py sdist bdist_wheel && pip or pip3 install dist/***.whl -U +cd /path/to/PaddleFL/python +${PYTHON_EXECUTABLE} setup.py sdist bdist_wheel +# install the +pip or pip3 install dist/***.whl -U ``` Validate the installation by running the `python` or `python3`, then runs `import paddle_encrypted as pe` and `pe.version()`. The installation succeeds if you see `Paddle Encrypted Version: 1.0.0`. -- GitLab