From 94e15d200db52421b4403389ca9fb1c4677d0d6f Mon Sep 17 00:00:00 2001 From: chengmo Date: Wed, 17 Jun 2020 17:37:15 +0800 Subject: [PATCH] fix readme --- README.md | 4 ++++ setup.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index edd0f30e..ba652821 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,10 @@ ```bash python -m pip install paddle-rec ``` + > 该方法会默认下载安装`paddlepaddle v1.7.2 cpu版本`,若无法正常下载: + > - 可以在[该地址](https://pypi.org/project/paddlepaddle/1.7.2/#files),下载PaddlePaddle后手动安装whl包 + > - 可以pip安装PaddlePaddle,`python -m pip install paddlepaddle==1.7.2 -i https://mirror.baidu.com/pypi/simple` + > - 其他安装问题可以在[Paddle Issue](https://github.com/PaddlePaddle/Paddle/issues)或[PaddleRec Issue](https://github.com/PaddlePaddle/PaddleRec/issues)提出,会有工程师及时解答 - 安装方法二 diff --git a/setup.py b/setup.py index 6e4b22ec..110541ba 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ requires = ["paddlepaddle == 1.7.2", "PyYAML >= 5.1.1"] about = {} about["__title__"] = "paddle-rec" -about["__version__"] = "0.0.2" +about["__version__"] = "0.1.0" about["__description__"] = "paddle-rec" about["__author__"] = "paddle-dev" about["__author_email__"] = "paddle-dev@baidu.com" @@ -96,7 +96,7 @@ dirname = tempfile.mktemp() build(dirname) shutil.rmtree(dirname) -print(''' +print(u''' \033[32m ██████╗ █████╗ ██████╗ ██████╗ ██╗ ███████╗██████╗ ███████╗ ██████╗ ██╔══██╗██╔══██╗██╔══██╗██╔══██╗██║ ██╔════╝██╔══██╗██╔════╝██╔════╝ -- GitLab